summaryrefslogtreecommitdiff
path: root/prolog/problems/family_relations/mother_2
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@araneo.org>2015-09-22 12:03:57 +0200
committerTimotej Lazar <timotej.lazar@araneo.org>2015-09-22 12:03:57 +0200
commit5a6237fc92fc57f87fe3f11144e4ade5baa96350 (patch)
treeb251950bc601780ff30d7097711fcdfa014420b0 /prolog/problems/family_relations/mother_2
parent0d45ae47238808ac4659a81c7dc94aba88c810f5 (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 'prolog/problems/family_relations/mother_2')
-rw-r--r--prolog/problems/family_relations/mother_2/common.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/prolog/problems/family_relations/mother_2/common.py b/prolog/problems/family_relations/mother_2/common.py
index 4d198d4..e90671b 100644
--- a/prolog/problems/family_relations/mother_2/common.py
+++ b/prolog/problems/family_relations/mother_2/common.py
@@ -64,7 +64,9 @@ def test(program, solved_problems):
if engine_id:
prolog.engine.destroy(engine_id)
- return n_correct, len(test_cases)
+ passed = n_correct == len(test_in)
+ hints = [{'id': 'test_results', 'args': {'passed': n_correct, 'total': len(test_in)}}]
+ return passed, hints
def hint(program, solved_problems):
tokens = prolog.util.tokenize(program)