32 lines
740 B
Python
32 lines
740 B
Python
from app_skellington.cfg import Config
|
|
|
|
class TestConfig_e2e:
|
|
def test_allows_reading_with_no_spec(self):
|
|
x = Config()
|
|
assert True == False
|
|
|
|
def test_allows_reading_with_sample_spec(self):
|
|
x = Config()
|
|
assert True == False
|
|
|
|
def test_constructor_fails_with_invalid_spec(self):
|
|
x = Config()
|
|
assert True == False
|
|
|
|
def test_allows_options_beyond_spec(self):
|
|
x = Config()
|
|
assert True == False
|
|
|
|
def test_can_read_config_correctly_from_file(self):
|
|
pass
|
|
|
|
def test_can_read_config_file_mutiple_times(self):
|
|
pass
|
|
|
|
def test_can_override_config_file_manually(self):
|
|
pass
|
|
|
|
def test_can_set_option_without_config(self):
|
|
pass
|
|
|