(sol_code, stu_code)
| 85 | ], |
| 86 | ) |
| 87 | def test_urlopen_in_process(sol_code, stu_code): |
| 88 | with in_temp_dir(): |
| 89 | chain = setup_state("", "", pec="") |
| 90 | |
| 91 | chain._state.solution_code = sol_code |
| 92 | chain._state.student_code = stu_code |
| 93 | |
| 94 | with verify_sct(True): |
| 95 | chain.run() |
| 96 | |
| 97 | |
| 98 | def write_file(path, name, content): |
nothing calls this directly
no test coverage detected