supervisor/tests/common.py
Pascal Vizeli 05b58d76b9
Add tests for hass.io (#817)
* Add tests for hass.io

* Fix folder

* Fix test command
2018-11-18 12:08:46 +01:00

10 lines
237 B
Python

"""Common test functions."""
import json
from pathlib import Path
def load_json_fixture(filename):
"""Load a fixture."""
path = Path(Path(__file__).parent.joinpath("fixtures"), filename)
return json.loads(path.read_text())