mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-12-24 12:29:08 +00:00
Fix defaults for builds (#2675)
This commit is contained in:
21
tests/utils/test_common.py
Normal file
21
tests/utils/test_common.py
Normal file
@@ -0,0 +1,21 @@
|
||||
"""Test common."""
|
||||
from pathlib import Path
|
||||
|
||||
import pytest
|
||||
|
||||
from supervisor.exceptions import ConfigurationFileError
|
||||
from supervisor.utils.common import find_one_filetype
|
||||
|
||||
|
||||
def test_not_found(tmp_path):
|
||||
"""Test default."""
|
||||
with pytest.raises(ConfigurationFileError):
|
||||
find_one_filetype(tmp_path, "test", [".json"])
|
||||
|
||||
|
||||
def test_with_found(tmp_path):
|
||||
"""Test default."""
|
||||
test_file = Path(tmp_path, "test.json")
|
||||
test_file.write_text("found")
|
||||
|
||||
assert find_one_filetype(tmp_path, "test", [".json"]) == test_file
|
||||
Reference in New Issue
Block a user