(self)
| 2862 | self.assertNotEqual(err.strip(), b'') |
| 2863 | |
| 2864 | def test_test_command(self): |
| 2865 | for tar_name in testtarnames: |
| 2866 | for opt in '-t', '--test': |
| 2867 | out = self.tarfilecmd(opt, tar_name) |
| 2868 | self.assertEqual(out, b'') |
| 2869 | |
| 2870 | def test_test_command_verbose(self): |
| 2871 | for tar_name in testtarnames: |
nothing calls this directly
no test coverage detected