(sql)
| 226 | 'select * from foo where bar = 1 and baz between qux and ', |
| 227 | ]) |
| 228 | def test_find_prev_keyword_where(sql): |
| 229 | kw, stripped = find_prev_keyword(sql) |
| 230 | assert kw.value == 'where' and stripped == 'select * from foo where' |
| 231 | |
| 232 | |
| 233 | @pytest.mark.parametrize('sql', [ |
nothing calls this directly
no test coverage detected