(self)
| 2868 | self.assertEqual(out, b'') |
| 2869 | |
| 2870 | def test_test_command_verbose(self): |
| 2871 | for tar_name in testtarnames: |
| 2872 | for opt in '-v', '--verbose': |
| 2873 | out = self.tarfilecmd(opt, '-t', tar_name, |
| 2874 | PYTHONIOENCODING='utf-8') |
| 2875 | self.assertIn(b'is a tar archive.\n', out) |
| 2876 | |
| 2877 | def test_test_command_invalid_file(self): |
| 2878 | zipname = support.findfile('zipdir.zip', subdir='archivetestdata') |
nothing calls this directly
no test coverage detected