(self)
| 6002 | self.assertStringEqual(ns, string) |
| 6003 | |
| 6004 | def test_parser(self): |
| 6005 | parser = argparse.ArgumentParser(prog='PROG') |
| 6006 | string = ( |
| 6007 | "ArgumentParser(prog='PROG', usage=None, description=None, " |
| 6008 | "formatter_class=%r, conflict_handler='error', " |
| 6009 | "add_help=True)" % argparse.HelpFormatter) |
| 6010 | self.assertStringEqual(parser, string) |
| 6011 | |
| 6012 | # =============== |
| 6013 | # Namespace tests |
nothing calls this directly
no test coverage detected