(self)
| 2076 | self.assertIn('spameggs42', names[0]) |
| 2077 | |
| 2078 | def test_create_taropen(self): |
| 2079 | with self.taropen(tmpname, "x") as tobj: |
| 2080 | tobj.add(self.file_path) |
| 2081 | |
| 2082 | with self.taropen(tmpname) as tobj: |
| 2083 | names = tobj.getnames() |
| 2084 | self.assertEqual(len(names), 1) |
| 2085 | self.assertIn('spameggs42', names[0]) |
| 2086 | |
| 2087 | def test_create_existing_taropen(self): |
| 2088 | with self.taropen(tmpname, "x") as tobj: |
nothing calls this directly
no test coverage detected