|
|
|
@ -39,11 +39,10 @@ class FakeSystemExit(Exception):
|
|
|
|
|
Added explicit __init__ so SystemExit.code functionality could be emulated.
|
|
|
|
|
Taking form from https://stackoverflow.com/a/26938914/1634191
|
|
|
|
|
"""
|
|
|
|
|
def __init__(self, message, code=None, *args):
|
|
|
|
|
self.message = message
|
|
|
|
|
def __init__(self, code=None, *args):
|
|
|
|
|
self.code = code
|
|
|
|
|
|
|
|
|
|
super(FakeSystemExit, self).__init__(message, *args)
|
|
|
|
|
super(FakeSystemExit, self).__init__(
|
|
|
|
|
"Exited with code: {}.".format(self.code), *args)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# code for fake fs
|
|
|
|
@ -202,7 +201,6 @@ class TestAlone(CommandTestCase):
|
|
|
|
|
self.assertEqual(cm.exception.code, 2)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@unittest.skipIf(sys.version_info.major == 2, "not supported for Python2")
|
|
|
|
|
def test_alone_prints_help(self):
|
|
|
|
|
# capturing the output of `pubs --help` is difficult because argparse
|
|
|
|
|
# raises as SystemExit(0) after calling `print_help`, and this gets
|
|
|
|
@ -210,14 +208,15 @@ class TestAlone(CommandTestCase):
|
|
|
|
|
# `pubs --help` isn't too easy unless substantially reorganization of
|
|
|
|
|
# the parser and testing context is made. instead, the exit codes of
|
|
|
|
|
# the two usecases are compared.
|
|
|
|
|
|
|
|
|
|
with self.assertRaises(FakeSystemExit) as cm1:
|
|
|
|
|
self.execute_cmds(['pubs'])
|
|
|
|
|
self.assertEqual(cm1.exception.code, 2)
|
|
|
|
|
|
|
|
|
|
def test_help_prints_help(self):
|
|
|
|
|
# see test_alone_prints_help
|
|
|
|
|
with self.assertRaises(FakeSystemExit) as cm2:
|
|
|
|
|
self.execute_cmds(['pubs', '--help'])
|
|
|
|
|
|
|
|
|
|
self.assertEqual(cm1.exception.code, cm2.exception.code, 2)
|
|
|
|
|
self.execute_cmds(['pubs init', 'pubs --help'])
|
|
|
|
|
self.assertEqual(cm2.exception.code, 0)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestInit(CommandTestCase):
|
|
|
|
|