(pattern, url, expected)
| 130 | ], |
| 131 | ) |
| 132 | def test_url_matches(pattern, url, expected): |
| 133 | pattern = URLPattern(pattern) |
| 134 | assert pattern.matches(httpx.URL(url)) == expected |
| 135 | |
| 136 | |
| 137 | def test_pattern_priority(): |
nothing calls this directly
no test coverage detected