(pattern)
| 593 | |
| 594 | @pytest.mark.parametrize("pattern", ["aa:", "fo:*", "00:", "x1:abc"]) |
| 595 | def test_parse_pattern_error(pattern): |
| 596 | with pytest.raises(ValueError): |
| 597 | parse_pattern(pattern) |
| 598 | |
| 599 | |
| 600 | def test_pattern_matcher(): |
nothing calls this directly
no test coverage detected