1
0
mirror of https://github.com/home-assistant/core.git synced 2026-06-02 13:44:32 +01:00
Files
core/tests/components/octoprint/__init__.py
T

29 lines
609 B
Python

"""Tests for the OctoPrint integration."""
DEFAULT_JOB = {
"job": {
"averagePrintTime": None,
"estimatedPrintTime": None,
"filament": None,
"file": {
"date": None,
"display": None,
"name": None,
"origin": None,
"path": None,
"size": None,
},
"lastPrintTime": None,
"user": None,
},
"progress": {"completion": 50},
}
DEFAULT_PRINTER = {
"state": {
"flags": {"printing": True, "error": False},
"text": "Operational",
},
"temperature": [],
}