(text)
| 198 | def test_regex_group_count_is_supported_for_custom_types(): |
| 199 | @with_pattern(r"(meter|kilometer)", regex_group_count=1) |
| 200 | def parse_unit(text): |
| 201 | return text.strip() |
| 202 | |
| 203 | @with_pattern(r"\d+") |
| 204 | def parse_number(text): |
nothing calls this directly
no outgoing calls
no test coverage detected