(self)
| 1478 | assert isinstance(r, ReRef) |
| 1479 | |
| 1480 | def test_complement(self): |
| 1481 | r = Complement(Re(StringVal("a"))) |
| 1482 | assert isinstance(r, ReRef) |
| 1483 | |
| 1484 | def test_range(self): |
| 1485 | r = Range("a", "z") |
nothing calls this directly
no test coverage detected