(self)
| 7 | class TestPandasPytables(unittest.TestCase): |
| 8 | |
| 9 | def test_rw_hd5(self): |
| 10 | want = pd.DataFrame([[1, 1.0, 'a']], columns=['x', 'y', 'z']) |
| 11 | want.to_hdf('./want.h5', 'data') |
| 12 | got = pd.read_hdf('./want.h5') |
| 13 | assert_frame_equal(want, got) |
nothing calls this directly
no outgoing calls
no test coverage detected