test load_config

This commit is contained in:
2026-06-18 09:37:54 +08:00
parent 649533cb17
commit 26ca347c1d
2 changed files with 23 additions and 0 deletions

0
tests/__init__.py Normal file
View File

23
tests/test_utils.py Normal file
View File

@ -0,0 +1,23 @@
# test_utils.py
import pytest
from quickdraw_bot.utils.utils import load_config
class TestUtils:
def test_load_config_load_valid_yaml(self, tmp_path):
config_file = tmp_path / 'config.yaml'
config_file.write_text('key: value\nnested:\n a: 1\n')
result = load_config(str(config_file))
assert result == {'key': 'value', 'nested': {'a': 1}}
def test_load_config_returns_dict(self, tmp_path):
config_file = tmp_path / 'config.yaml'
config_file.write_text('foo: bar\n')
result = load_config(str(config_file))
assert isinstance(result, dict)
def test_load_config_file_not_found(self):
with pytest.raises(FileNotFoundError):
load_config('/nonexistent/path/config.yaml')