(self)
| 757 | |
| 758 | class CommandLineTest(unittest.TestCase): |
| 759 | def setUp(self): |
| 760 | self.filename = tempfile.mktemp() |
| 761 | self.addCleanup(os_helper.unlink, self.filename) |
| 762 | |
| 763 | @staticmethod |
| 764 | def text_normalize(string): |
nothing calls this directly
no test coverage detected