(self)
| 4 | |
| 5 | class TestPolars(unittest.TestCase): |
| 6 | def test_read_csv(self): |
| 7 | data = pl.read_csv('/input/tests/data/train.csv') |
| 8 | |
| 9 | self.assertEqual(100, len(data)) |
| 10 | |
| 11 | def test_plot(self): |
| 12 | # This relies on the hvplot package |
nothing calls this directly
no outgoing calls
no test coverage detected