(self)
| 105 | |
| 106 | class TestRealComplete(unittest.TestCase): |
| 107 | def setUp(self): |
| 108 | self.module_gatherer = ModuleGatherer() |
| 109 | while self.module_gatherer.find_coroutine(): |
| 110 | pass |
| 111 | __import__("sys") |
| 112 | __import__("os") |
| 113 | |
| 114 | def test_from_attribute(self): |
| 115 | self.assertSetEqual( |
nothing calls this directly
no test coverage detected