(self)
| 6120 | self.assertStringEqual(ns, string) |
| 6121 | |
| 6122 | def test_parser(self): |
| 6123 | parser = argparse.ArgumentParser(prog='PROG') |
| 6124 | string = ( |
| 6125 | "ArgumentParser(prog='PROG', usage=None, description=None, " |
| 6126 | "formatter_class=%r, conflict_handler='error', " |
| 6127 | "add_help=True)" % argparse.HelpFormatter) |
| 6128 | self.assertStringEqual(parser, string) |
| 6129 | |
| 6130 | # =============== |
| 6131 | # Namespace tests |
nothing calls this directly
no test coverage detected