Remove Non-Asserting Test Cases

This commit is contained in:
BJ Dierkes 2018-08-05 09:37:19 -05:00
parent 85e7dd8881
commit ada13170ae
2 changed files with 0 additions and 24 deletions

View File

@ -60,18 +60,6 @@ def test_parse_file():
CONFIG_PARSED['section']
def test_handler_override_options_is_none():
class MyApp(JsonApp):
class Meta:
core_handler_override_options = {}
handler_override_options = {}
argv = []
with MyApp() as app:
app.run()
app.render(dict(foo='bar'))
def test_get_dict():
with JsonApp() as app:
_config = app.config.get_dict()

View File

@ -59,18 +59,6 @@ def test_parse_file():
CONFIG_PARSED['section']
def test_handler_override_options_is_none():
class MyApp(YamlApp):
class Meta:
core_handler_override_options = {}
handler_override_options = {}
argv = []
with MyApp() as app:
app.run()
app.render(dict(foo='bar'))
def test_get_dict():
with YamlApp() as app:
_config = app.config.get_dict()