10 lines
207 B
Python
10 lines
207 B
Python
from src.settings import Settings
|
|
|
|
|
|
class TestSettings():
|
|
|
|
def test_creation(self):
|
|
s = Settings()
|
|
assert s['ipv6_enabled'] is not None
|
|
assert s['notifications'] is not None
|