mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-04-23 12:47:16 +00:00
10 lines
237 B
Python
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())
|