(temp_db)
| 15 | |
| 16 | |
| 17 | def test_range(temp_db) -> None: |
| 18 | test = ShellTest().add_argument(temp_db).statement("RETURN RANGE(0, 10) AS a;") |
| 19 | result = test.run() |
| 20 | result.check_stdout("[0,1,2,3,4,5,6,7,8,9,10]") |
| 21 | |
| 22 | |
| 23 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected