Reject this test by copying the expected result to the source tree.
(self)
| 305 | self.status = 'accept' |
| 306 | |
| 307 | def reject(self): |
| 308 | """ |
| 309 | Reject this test by copying the expected result to the source tree. |
| 310 | """ |
| 311 | expected = self.dir / self.expected |
| 312 | if not expected.is_symlink(): |
| 313 | copy_file(expected, self.destdir / self.generated) |
| 314 | self.status = 'reject' |
| 315 | |
| 316 | |
| 317 | def copy_file(a, b): |
no test coverage detected