(self)
| 9 | class TestFastAI(unittest.TestCase): |
| 10 | # Basic import |
| 11 | def test_basic(self): |
| 12 | import fastai |
| 13 | import fastcore |
| 14 | import fastprogress |
| 15 | import fastdownload |
| 16 | |
| 17 | def test_has_version(self): |
| 18 | self.assertGreater(len(fastai.__version__), 2) |
nothing calls this directly
no outgoing calls
no test coverage detected