Compare actual and expected file content exactly.
(self, lines, matches)
| 312 | return self.match_func(lines, matches) |
| 313 | |
| 314 | def match_exact(self, lines, matches): |
| 315 | """Compare actual and expected file content exactly.""" |
| 316 | return match_exact(lines, matches) |
| 317 | |
| 318 | def match_re(self, lines, res): |
| 319 | """Compare file content with a regular expression.""" |
nothing calls this directly
no test coverage detected