summaryrefslogtreecommitdiff
path: root/python/problems/introduction/fast_fingers_2/common.py
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 /python/problems/introduction/fast_fingers_2/common.py
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 'python/problems/introduction/fast_fingers_2/common.py')
-rw-r--r--python/problems/introduction/fast_fingers_2/common.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/problems/introduction/fast_fingers_2/common.py b/python/problems/introduction/fast_fingers_2/common.py
index 9c8772f..d562f7b 100644
--- a/python/problems/introduction/fast_fingers_2/common.py
+++ b/python/problems/introduction/fast_fingers_2/common.py
@@ -33,7 +33,9 @@ hint_type = {
}
def test(python, code):
- return 0,0
+ passed = True
+ hints = [{'id': 'test_results', 'args': {'passed': 0, 'total': 0}}]
+ return passed, hints
def hint(python, code):
# run one test first to see if there are any exceptions