From 5a6237fc92fc57f87fe3f11144e4ade5baa96350 Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Tue, 22 Sep 2015 12:03:57 +0200 Subject: 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. --- python/problems/introduction/fast_fingers/common.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'python/problems/introduction/fast_fingers') diff --git a/python/problems/introduction/fast_fingers/common.py b/python/problems/introduction/fast_fingers/common.py index 3c1b138..8ab51ab 100644 --- a/python/problems/introduction/fast_fingers/common.py +++ b/python/problems/introduction/fast_fingers/common.py @@ -27,7 +27,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 -- cgit v1.2.1