diff options
author | ankitjavalkar | 2016-04-06 11:26:52 +0530 |
---|---|---|
committer | ankitjavalkar | 2016-05-05 19:16:26 +0530 |
commit | d3241512c71d61b355358a691d18e4ff8a8df34c (patch) | |
tree | 0d1810fab8a10b7671400dab64a8b877b334a676 /yaksh/python_stdout_evaluator.py | |
parent | f120f5763904589d3c18b6cc0f4e227bcaef9a0a (diff) | |
download | online_test-d3241512c71d61b355358a691d18e4ff8a8df34c.tar.gz online_test-d3241512c71d61b355358a691d18e4ff8a8df34c.tar.bz2 online_test-d3241512c71d61b355358a691d18e4ff8a8df34c.zip |
Multiple test cases passed as dicts, check_code() is iterated based on no. of test cases
Diffstat (limited to 'yaksh/python_stdout_evaluator.py')
-rw-r--r-- | yaksh/python_stdout_evaluator.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yaksh/python_stdout_evaluator.py b/yaksh/python_stdout_evaluator.py index 815752f..9443e37 100644 --- a/yaksh/python_stdout_evaluator.py +++ b/yaksh/python_stdout_evaluator.py @@ -25,11 +25,11 @@ def redirect_stdout(): class PythonStdoutEvaluator(CodeEvaluator): """Tests the Python code obtained from Code Server""" - def check_code(self, user_answer, test_case_data): + def check_code(self, user_answer, expected_output): success = False tb = None - expected_output = test_case_data[0] + # expected_output = test_case_data[0] submitted = compile(user_answer, '<string>', mode='exec') with redirect_stdout() as output_buffer: g = {} |