Every valid match function is accepted.
(self, func)
| 256 | "func", [None, getattr(re, "fullmatch", None), re.match, re.search] |
| 257 | ) |
| 258 | def test_accepts_all_valid_func(self, func): |
| 259 | """ |
| 260 | Every valid match function is accepted. |
| 261 | """ |
| 262 | matches_re("a", func=func) |
| 263 | |
| 264 | def test_repr(self): |
| 265 | """ |
nothing calls this directly
no test coverage detected