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