(self)
| 486 | self.assertEqual(app.extra_args, ["-", "-", "extra"]) |
| 487 | |
| 488 | def test_unicode_argv(self): |
| 489 | app = MyApp() |
| 490 | app.parse_command_line(["ünîcødé"]) |
| 491 | |
| 492 | def test_document_config_option(self): |
| 493 | app = MyApp() |
nothing calls this directly
no test coverage detected