(self)
| 6115 | self.assertStringEqual(ns, string) |
| 6116 | |
| 6117 | def test_namespace_starkwargs_identifier(self): |
| 6118 | ns = argparse.Namespace(**{'valid': True}) |
| 6119 | string = "Namespace(valid=True)" |
| 6120 | self.assertStringEqual(ns, string) |
| 6121 | |
| 6122 | def test_parser(self): |
| 6123 | parser = argparse.ArgumentParser(prog='PROG') |
nothing calls this directly
no test coverage detected