(self)
| 885 | |
| 886 | @support.requires_subprocess() |
| 887 | def test_unknown_args(self): |
| 888 | return_code, output = self.invoke_command_line("--unknown-arg") |
| 889 | excepted_return_code, _ = self.get_excepted_output("--unknown-arg") |
| 890 | self.assertEqual(return_code, excepted_return_code) |
| 891 | self.assertIn('[--user-base] [--user-site]', output) |
| 892 | |
| 893 | @support.requires_subprocess() |
| 894 | def test_base_arg(self): |
nothing calls this directly
no test coverage detected