(get_stream)
| 185 | |
| 186 | |
| 187 | def test_stream(get_stream): |
| 188 | with get_stream("stream.sql") as stream: |
| 189 | p = sqlparse.parse(stream)[0] |
| 190 | assert p.get_type() == 'INSERT' |
| 191 | |
| 192 | |
| 193 | def test_issue90(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…