(self)
| 47 | |
| 48 | class TestAliasLoader(unittest.TestCase): |
| 49 | def setUp(self): |
| 50 | self.files = FileCreator() |
| 51 | self.alias_file = self.files.create_file('alias', '[toplevel]\n') |
| 52 | |
| 53 | def tearDown(self): |
| 54 | self.files.remove_all() |
nothing calls this directly
no test coverage detected