(self)
| 4 | |
| 5 | class TestPandas(unittest.TestCase): |
| 6 | def test_read_csv(self): |
| 7 | data = pd.read_csv("/input/tests/data/train.csv") |
| 8 | |
| 9 | self.assertEqual(100, len(data.index)) |
| 10 | |
| 11 | def test_read_feather(self): |
| 12 | data = pd.read_feather("/input/tests/data/feather-0_3_1.feather") |
nothing calls this directly
no outgoing calls
no test coverage detected