Skip to content

Commit 84813c8

Browse files
committed
update test file
1 parent 10a2526 commit 84813c8

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

tests/unit/bokeh_sampledata/test_cycling.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,14 @@ def test_cycling() -> None:
2121
assert isinstance(c.cycling, pd.DataFrame)
2222

2323
assert len(c.cycling) == 4391
24+
expected_columns = {
25+
"position_lat",
26+
"position_long",
27+
"altitude",
28+
"power",
29+
"cadence",
30+
"distance",
31+
"speed",
32+
"time",
33+
}
34+
assert set(c.cycling.columns) == expected_columns

0 commit comments

Comments
 (0)