Accept this test by copying the generated result to the source tree.
(self)
| 298 | return f'{box} {self.name} [{self.extension}]' |
| 299 | |
| 300 | def accept(self): |
| 301 | """ |
| 302 | Accept this test by copying the generated result to the source tree. |
| 303 | """ |
| 304 | copy_file(self.dir / self.generated, self.destdir / self.generated) |
| 305 | self.status = 'accept' |
| 306 | |
| 307 | def reject(self): |
| 308 | """ |
no test coverage detected