()
| 4 | |
| 5 | |
| 6 | def test_isidentifier(): |
| 7 | assert isidentifier("abc") |
| 8 | assert not isidentifier("<") |
| 9 | assert not isidentifier("") |
| 10 | assert isidentifier("áéíóú") |
| 11 | |
| 12 | |
| 13 | def test_extract_token_and_qualifier(): |
nothing calls this directly
no test coverage detected