(text)
| 1900 | def test_matcher_suppression(self): |
| 1901 | @completion_matcher(identifier="a_matcher") |
| 1902 | def a_matcher(text): |
| 1903 | return ["completion_a"] |
| 1904 | |
| 1905 | @completion_matcher(identifier="b_matcher", api_version=2) |
| 1906 | def b_matcher(context: CompletionContext): |
nothing calls this directly
no test coverage detected