diff options
author | Timotej Lazar <timotej.lazar@araneo.org> | 2015-09-22 12:03:57 +0200 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@araneo.org> | 2015-09-22 12:03:57 +0200 |
commit | 5a6237fc92fc57f87fe3f11144e4ade5baa96350 (patch) | |
tree | b251950bc601780ff30d7097711fcdfa014420b0 /python/problems/lists_and_for | |
parent | 0d45ae47238808ac4659a81c7dc94aba88c810f5 (diff) |
Update test functions for existing problems
The test function is now expected to return a boolean indicating whether
the program is correct and a list of hint objects.
Diffstat (limited to 'python/problems/lists_and_for')
-rw-r--r-- | python/problems/lists_and_for/contains_42/common.py | 5 | ||||
-rw-r--r-- | python/problems/lists_and_for/contains_string/common.py | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/python/problems/lists_and_for/contains_42/common.py b/python/problems/lists_and_for/contains_42/common.py index 3a5a905..3ebe546 100644 --- a/python/problems/lists_and_for/contains_42/common.py +++ b/python/problems/lists_and_for/contains_42/common.py @@ -63,7 +63,10 @@ def test(python, code): if str(test_out[xs_i]) in output and \ str(not test_out[xs_i]) not in output: n_correct += 1 - return n_correct, len(test_out) + + passed = n_correct == len(test_in) + hints = [{'id': 'test_results', 'args': {'passed': n_correct, 'total': len(test_in)}}] + return passed, hints def hint(python, code): # run one test first to see if there are any exceptions diff --git a/python/problems/lists_and_for/contains_string/common.py b/python/problems/lists_and_for/contains_string/common.py index b69a4ea..5e0a46b 100644 --- a/python/problems/lists_and_for/contains_string/common.py +++ b/python/problems/lists_and_for/contains_string/common.py @@ -61,7 +61,10 @@ def test(python, code): if str(test_out[xs_i]) in output and \ str(not test_out[xs_i]) not in output: n_correct += 1 - return n_correct, len(test_out) + + passed = n_correct == len(test_in) + hints = [{'id': 'test_results', 'args': {'passed': n_correct, 'total': len(test_in)}}] + return passed, hints def hint(python, code): # run one test first to see if there are any exceptions |