First upload to the big WWW.
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
[pytest]
|
||||
filterwarnings =
|
||||
ignore::DeprecationWarning
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
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
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
from app_skellington.cli import CommandTree
|
||||
|
||||
class TestCli_e2e:
|
||||
def test_null_constructor_works(self):
|
||||
x = CommandTree()
|
||||
assert True == False
|
||||
|
||||
|
||||
Reference in New Issue
Block a user