app_skellington/tests/test_cli.py

9 lines
163 B
Python
Raw Normal View History

2020-03-01 21:08:11 -07:00
from app_skellington.cli import CommandTree
class TestCli_e2e:
def test_null_constructor_works(self):
x = CommandTree()
2020-07-19 03:11:04 -06:00
assert True == True
2020-03-01 21:08:11 -07:00