(pdf)
| 948 | |
| 949 | |
| 950 | def test_round(pdf): |
| 951 | pdf += 0.5555 |
| 952 | df = from_pandas(pdf) |
| 953 | assert_eq(df.round(decimals=1), pdf.round(decimals=1)) |
| 954 | assert_eq(df.x.round(decimals=1), pdf.x.round(decimals=1)) |
| 955 | |
| 956 | |
| 957 | def test_repr(df): |
nothing calls this directly
no test coverage detected