(self)
| 47 | |
| 48 | class TestPartialGlobalArgsParser(unittest.TestCase): |
| 49 | def setUp(self): |
| 50 | self.parser = FirstPassGlobalArgParser() |
| 51 | |
| 52 | def test_can_parse_profile(self): |
| 53 | parsed_args, _ = self.parser.parse_known_args(['--profile', 'foo']) |
nothing calls this directly
no test coverage detected