(self)
| 877 | |
| 878 | @support.requires_subprocess() |
| 879 | def test_unknown_args(self): |
| 880 | return_code, output = self.invoke_command_line("--unknown-arg") |
| 881 | excepted_return_code, _ = self.get_excepted_output("--unknown-arg") |
| 882 | self.assertEqual(return_code, excepted_return_code) |
| 883 | self.assertIn('[--user-base] [--user-site]', output) |
| 884 | |
| 885 | @support.requires_subprocess() |
| 886 | def test_base_arg(self): |
nothing calls this directly
no test coverage detected