()
| 122 | |
| 123 | |
| 124 | def test_parse_function_param_single_literal(): |
| 125 | t = sqlparse.parse('foo(5)')[0].tokens[0].get_parameters() |
| 126 | assert len(t) == 1 |
| 127 | assert t[0].ttype is T.Number.Integer |
| 128 | |
| 129 | |
| 130 | def test_parse_nested_function(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…