()
| 32 | |
| 33 | |
| 34 | def test_mixed_list(): |
| 35 | mat = np.random.rand(3,20) |
| 36 | df = pd.DataFrame(np.random.rand(3,20)) |
| 37 | text = ['here is some test text', 'and a little more', 'and more'] |
| 38 | string = 'a string' |
| 39 | res = format_data([mat, df, text, string]) |
| 40 | assert isinstance(res, list) |
| 41 | assert all(map(lambda x: isinstance(x, np.ndarray), res)) |
| 42 | |
| 43 | |
| 44 | def test_geo(): |
nothing calls this directly
no test coverage detected