Added prints to first test batch
authorMike Jackson <michaelj@epcc.ed.ac.uk>
Wed, 3 Apr 2013 09:24:11 +0000 (02:24 -0700)
committerW. Trevor King <wking@tremily.us>
Fri, 1 Nov 2013 04:22:29 +0000 (21:22 -0700)
testing/Writing.md

index f757b462b71dcda77829dbee9fed0baf9faa04a7..e826ce483d8f1549ab5ee15ec33f5dd6c3e2917e 100755 (executable)
@@ -54,9 +54,9 @@ which raises a new exception, with a more meaningful message. If writing a compl
 
 Runtime tests don't test our functions behaviour or whether it's implemented correctly. So, we can add some tests,
 
-    print calculate_weight('A')
-    print calculate_weight('G')
-    print calculate_weight('GA')
+    print "A is ", calculate_weight('A')
+    print "G is ", calculate_weight('G')
+    print "GA is ", calculate_weight('GA')
 
 But we'd have to visually inspect the results to see they are as expected. So, let's have the computer do that for us and make our lives easier, and save us time in checking,