(self)
| 8 | |
| 9 | class TestSimpleComplete(unittest.TestCase): |
| 10 | def setUp(self): |
| 11 | self.module_gatherer = ModuleGatherer() |
| 12 | self.module_gatherer.modules = [ |
| 13 | "zzabc", |
| 14 | "zzabd", |
| 15 | "zzefg", |
| 16 | "zzabc.e", |
| 17 | "zzabc.f", |
| 18 | "zzefg.a1", |
| 19 | "zzefg.a2", |
| 20 | ] |
| 21 | |
| 22 | def test_simple_completion(self): |
| 23 | self.assertSetEqual( |
nothing calls this directly
no test coverage detected