(self)
| 7 | class TestPandasOpenPyXL(unittest.TestCase): |
| 8 | |
| 9 | def test_rw_excel(self): |
| 10 | want = pd.DataFrame([[1, 10, 'a']], columns=['x', 'y', 'z']) |
| 11 | want.to_excel('./want.xlsx', index=False, engine="openpyxl") |
| 12 | got = pd.read_excel('./want.xlsx', engine="openpyxl") |
| 13 | assert_frame_equal(want, got) |
nothing calls this directly
no outgoing calls
no test coverage detected