()
| 14 | |
| 15 | |
| 16 | def test_df(): |
| 17 | data = pd.DataFrame(np.random.rand(100,10)) |
| 18 | assert isinstance(format_data(data), list) |
| 19 | assert isinstance(format_data(data)[0], np.ndarray) |
| 20 | |
| 21 | |
| 22 | def test_text(): |
nothing calls this directly
no test coverage detected