updated cli_test.py to no longer expect raised SystemExit exceptions

Signed-off-by: Tony Witherspoon <tony.witherspoon@gmail.com>
This commit is contained in:
Tony Witherspoon 2016-04-07 12:42:14 -04:00 committed by Joffrey F
parent 9cf483e224
commit 65b0e5973b
1 changed files with 0 additions and 6 deletions

View File

@ -82,12 +82,6 @@ class CLITestCase(unittest.TestCase):
self.assertTrue(project.client) self.assertTrue(project.client)
self.assertTrue(project.services) self.assertTrue(project.services)
def test_command_help(self):
with pytest.raises(SystemExit) as exc:
TopLevelCommand.help({'COMMAND': 'up'})
assert 'Usage: up' in exc.exconly()
def test_command_help_nonexistent(self): def test_command_help_nonexistent(self):
with pytest.raises(NoSuchCommand): with pytest.raises(NoSuchCommand):
TopLevelCommand.help({'COMMAND': 'nonexistent'}) TopLevelCommand.help({'COMMAND': 'nonexistent'})