(self)
| 48 | |
| 49 | class ParseTest(unittest.TestCase): |
| 50 | def test_empty_string(self): |
| 51 | assert list(_normparse("")) == [] |
| 52 | |
| 53 | def _assert_symbol(self, obj, ident): |
| 54 | """Assert that an object is a Symbol with the given identifier.""" |
nothing calls this directly
no test coverage detected