(test, props)
| 22 | |
| 23 | @pytest.mark.parametrize("props", basic_modes) |
| 24 | def test_sort001_can_sort(test, props): |
| 25 | test.start_server(get_app(props)) |
| 26 | |
| 27 | target = test.table("table") |
| 28 | |
| 29 | target.cell(0, "bbb-readonly").get_text() == "label Wet" |
| 30 | target.cell(1, "bbb-readonly").get_text() == "label Snowy" |
| 31 | target.cell(2, "bbb-readonly").get_text() == "label Tropical Beaches" |
| 32 | target.cell(3, "bbb-readonly").get_text() == "label Humid" |
| 33 | |
| 34 | target.column("bbb-readonly").sort(2) |
| 35 | |
| 36 | for i in range(4): |
| 37 | target.cell(i, "bbb-readonly").get_text() == "label Humid" |
| 38 | |
| 39 | assert test.get_log_errors() == [] |
nothing calls this directly
no test coverage detected
searching dependent graphs…