(self)
| 884 | |
| 885 | @support.requires_subprocess() |
| 886 | def test_base_arg(self): |
| 887 | return_code, output = self.invoke_command_line("--user-base") |
| 888 | excepted = self.get_excepted_output("--user-base") |
| 889 | excepted_return_code, excepted_output = excepted |
| 890 | self.assertEqual(return_code, excepted_return_code) |
| 891 | self.assertEqual(output, excepted_output) |
| 892 | |
| 893 | @support.requires_subprocess() |
| 894 | def test_site_arg(self): |
nothing calls this directly
no test coverage detected