()
| 5 | |
| 6 | |
| 7 | def test_pec_parsing_error(): |
| 8 | with pytest.raises(InstructorError): |
| 9 | State( |
| 10 | student_code="parses", |
| 11 | solution_code="parses", |
| 12 | pre_exercise_code="does not parse", |
| 13 | student_process=None, |
| 14 | solution_process=None, |
| 15 | reporter=Reporter(), |
| 16 | raw_student_output=None, |
| 17 | ) |