(self)
| 3328 | |
| 3329 | class CommandLineTest(unittest.TestCase): |
| 3330 | def setUp(self): |
| 3331 | self.filename = tempfile.mktemp() |
| 3332 | self.addCleanup(os_helper.unlink, self.filename) |
| 3333 | |
| 3334 | @staticmethod |
| 3335 | def text_normalize(string): |
nothing calls this directly
no test coverage detected