()
| 84 | |
| 85 | |
| 86 | def test_series_format(): |
| 87 | s = pd.Series([1, 2, 3, 4, 5, 6, 7, 8], index=list("ABCDEFGH")) |
| 88 | ds = from_pandas(s, 3) |
| 89 | |
| 90 | exp = dedent("""\ |
| 91 | npartitions=3 |
| 92 | A int64 |
| 93 | D ... |
| 94 | G ... |
| 95 | H ...""") |
| 96 | assert ds.to_string() == exp |
| 97 | |
| 98 | |
| 99 | def test_series_repr(): |
nothing calls this directly
no test coverage detected