(name)
| 37 | |
| 38 | @staticmethod |
| 39 | def from_name(name): |
| 40 | return Marker( |
| 41 | matches_start_func=lambda line: line == f"<!-- Polygraphy Test: {name} Start -->", |
| 42 | matches_end_func=lambda line: line == f"<!-- Polygraphy Test: {name} End -->", |
| 43 | ) |
| 44 | |
| 45 | |
| 46 | VALID_MARKERS = { |