()
| 48 | |
| 49 | |
| 50 | def test_missing_data(): |
| 51 | data = np.random.rand(100,10) |
| 52 | data[0][0]=np.nan |
| 53 | geo = plot(data, show=False) |
| 54 | assert isinstance(format_data(geo), list) |
| 55 | assert isinstance(format_data(geo)[0], np.ndarray) |
| 56 | |
| 57 | |
| 58 | def test_force_align(): |
nothing calls this directly
no test coverage detected