(self)
| 22 | del cls.root |
| 23 | |
| 24 | def test_new_empty(self): |
| 25 | flist = filelist.FileList(self.root) |
| 26 | self.assertEqual(flist.root, self.root) |
| 27 | e = flist.new() |
| 28 | self.assertEqual(type(e), flist.EditorWindow) |
| 29 | e._close() |
| 30 | |
| 31 | |
| 32 | if __name__ == '__main__': |
nothing calls this directly
no test coverage detected