We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccacd3c commit 7cd6e6fCopy full SHA for 7cd6e6f
tests/test_cms.py
@@ -184,5 +184,19 @@ def modification_fn(raw_config):
184
modify_config(self.task_dir, modification_fn)
185
186
187
+class TestRustJudge(TestSumCMS):
188
+ """A judge written in Rust."""
189
+
190
+ def expecting_success(self) -> bool:
191
+ return True
192
193
+ def modify_task(self) -> None:
194
+ def modification_fn(raw_config):
195
+ raw_config["tests"]["out_judge"] = "judge_rust"
196
+ raw_config["tests"]["judge_needs_out"] = "no"
197
198
+ modify_config(self.task_dir, modification_fn)
199
200
201
if __name__ == "__main__":
202
unittest.main(verbosity=2)
0 commit comments