(self, *args, **kwargs)
| 97 | capture_output = True |
| 98 | |
| 99 | def __init__(self, *args, **kwargs): |
| 100 | super(TestKeyValueBase, self).__init__(*args, **kwargs) |
| 101 | |
| 102 | self.parser = argparse.ArgumentParser() |
| 103 | self.parser.add_argument("-t", "--token", dest="token") |
| 104 | self.parser.add_argument("--api-key", dest="api_key") |
| 105 | self.shell = shell.Shell() |
| 106 | |
| 107 | def setUp(self): |
| 108 | super(TestKeyValueBase, self).setUp() |
nothing calls this directly
no outgoing calls
no test coverage detected