(tmpdir)
| 108 | |
| 109 | |
| 110 | def test_csv_integer_usecols(tmpdir): |
| 111 | fn = _make_file(tmpdir, format="csv") |
| 112 | df = read_csv(fn, usecols=[0, 1], names=["x", "y"]) |
| 113 | result = df["x"] |
| 114 | expected = pd.read_csv(fn, usecols=[0, 1], names=["x", "y"])["x"] |
| 115 | assert_eq(result, expected) |
| 116 | |
| 117 | |
| 118 | def test_read_csv_keywords(tmpdir): |
nothing calls this directly
no test coverage detected