6 lines
208 B
Python
6 lines
208 B
Python
from autophotographer import autophotographer_main
|
|
import pytest
|
|
|
|
def test_load_config_nonexistent_file():
|
|
with pytest.raises(FileNotFoundError):
|
|
autophotographer_main.load_config("blahblahblah")
|