(value)
| 39 | |
| 40 | @pytest.mark.parametrize('value', ['create', 'CREATE']) |
| 41 | def test_issue34(value): |
| 42 | t = sqlparse.parse("create")[0].token_first() |
| 43 | assert t.match(T.Keyword.DDL, value) is True |
| 44 | |
| 45 | |
| 46 | def test_issue35(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…