diff options
author | ankitjavalkar | 2015-02-04 20:03:13 +0530 |
---|---|---|
committer | ankitjavalkar | 2015-04-26 19:28:18 +0530 |
commit | 28e2d32f9839b0e3cb3e99ce0113832627610bd7 (patch) | |
tree | 60f3943c8b6ae5696920e9fc79bf897efcf1a360 /testapp/exam/xmlrpc_clients.py | |
parent | cd9f2542d09db0e4a352dd410f626f27e23c37e4 (diff) | |
download | online_test-28e2d32f9839b0e3cb3e99ce0113832627610bd7.tar.gz online_test-28e2d32f9839b0e3cb3e99ce0113832627610bd7.tar.bz2 online_test-28e2d32f9839b0e3cb3e99ce0113832627610bd7.zip |
Add test case model for testing redesign
Conflicts:
testapp/exam/models.py
testapp/exam/views.py
Diffstat (limited to 'testapp/exam/xmlrpc_clients.py')
-rw-r--r-- | testapp/exam/xmlrpc_clients.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testapp/exam/xmlrpc_clients.py b/testapp/exam/xmlrpc_clients.py index 14ebf27..1aab8de 100644 --- a/testapp/exam/xmlrpc_clients.py +++ b/testapp/exam/xmlrpc_clients.py @@ -29,7 +29,7 @@ class CodeServerProxy(object): "scilab": "run_scilab_code", } - def run_code(self, answer, test_code, user_dir, language): + def run_code(self, answer, test_code, test_obj, keyword_args, pos_args, expected_answer, user_dir, language): #### """Tests given code (`answer`) with the `test_code` supplied. If the optional `in_dir` keyword argument is supplied it changes the directory to that directory (it does not change it back to the original when @@ -55,7 +55,7 @@ class CodeServerProxy(object): try: server = self._get_server() method = getattr(server, method_name) - result = method(answer, test_code, user_dir) + result = method(answer, test_code, test_obj, user_dir) #### except ConnectionError: result = [False, 'Unable to connect to any code servers!'] return result |