Skip to content

Commit

Permalink
test: rewrite a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
PrettyWood committed Jul 17, 2024
1 parent b2ee363 commit e580741
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions python/tests/test_fastexcel.py
Original file line number Diff line number Diff line change
Expand Up @@ -584,12 +584,9 @@ def test_null_values_in_cells() -> None:

def test_bool_casting_to_string_for_polars() -> None:
excel_reader = fastexcel.read_excel(path_for_fixture("sheet-bool.xlsx"))

actual_polars_df = excel_reader.load_sheet(0, header_row=None, column_names=["0"]).to_polars()
expected_polars_df = pl.DataFrame(
{
"0": ["true", "false", "some string"],
}
)

pl_assert_frame_equal(actual_polars_df, expected_polars_df)
sheet = excel_reader.load_sheet(0, column_names=["col1"])
expected = {
"col1": ["true", "false", "some string"],
}
pl_assert_frame_equal(sheet.to_polars(), pl.DataFrame(expected))
pd_assert_frame_equal(sheet.to_pandas(), pd.DataFrame(expected))

0 comments on commit e580741

Please sign in to comment.