First upload to the big WWW.

This commit is contained in:
Mathew Guest
2020-03-01 21:08:11 -07:00
commit 485dafdfc4
15 changed files with 1442 additions and 0 deletions
View File
+4
View File
@@ -0,0 +1,4 @@
[pytest]
filterwarnings =
ignore::DeprecationWarning
+31
View File
@@ -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
+8
View File
@@ -0,0 +1,8 @@
from app_skellington.cli import CommandTree
class TestCli_e2e:
def test_null_constructor_works(self):
x = CommandTree()
assert True == False
View File