diff options
author | ankitjavalkar | 2015-04-21 18:15:10 +0530 |
---|---|---|
committer | ankitjavalkar | 2015-04-26 19:46:01 +0530 |
commit | 0580f99fecc0bb495beb5706e18246834174710b (patch) | |
tree | d3c427f14f44d3018fe1592f276c27e16fe77fb2 /testapp/exam/evaluate_bash.py | |
parent | 3ffdba6e587422a0f2955879d12e0b2aeac342e1 (diff) | |
download | online_test-0580f99fecc0bb495beb5706e18246834174710b.tar.gz online_test-0580f99fecc0bb495beb5706e18246834174710b.tar.bz2 online_test-0580f99fecc0bb495beb5706e18246834174710b.zip |
Add code checker registration class
Diffstat (limited to 'testapp/exam/evaluate_bash.py')
-rw-r--r-- | testapp/exam/evaluate_bash.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/testapp/exam/evaluate_bash.py b/testapp/exam/evaluate_bash.py index 4e79053..57c89ae 100644 --- a/testapp/exam/evaluate_bash.py +++ b/testapp/exam/evaluate_bash.py @@ -8,6 +8,8 @@ import importlib # local imports from code_server import TestCode +from registry import registry + class EvaluateBash(TestCode): """Tests the Bash code obtained from Code Server""" @@ -105,4 +107,6 @@ class EvaluateBash(TestCode): else: err = "Error:expected %s, got %s" % (inst_stdout+inst_stderr, stdnt_stdout+stdnt_stderr) - return False, err
\ No newline at end of file + return False, err + +registry.register('bash', evaluate_bash, EvaluateBash)
\ No newline at end of file |