tracks/perl6/exercises/bob/example.yaml in trackler-2.2.1.43 vs tracks/perl6/exercises/bob/example.yaml in trackler-2.2.1.44
- old
+ new
@@ -6,17 +6,17 @@
#`[Go through all of the cases (hiding at the bottom of this file)
and check that Bob gives us the correct response for each one.]
is ::($exercise).?hey(.<input>), |.<expected description> for @($c-data<cases>);
exercise_comment: The name of this exercise.
-module_comment: "%*ENV<EXERCISM> is for tests not directly for the exercise, don't worry about these :)"
+module_comment: The name of the module file to be loaded.
version_comment: The version we will be matching against the exercise.
lib_comment: Look for the module inside the same directory as this test file.
plan_comment: This is how many tests we expect to run.
use_test_comment: Check that the module can be use-d.
version_test_comment: "If the exercise is updated, we want to make sure other people testing\nyour code don't think you've made a mistake if things have changed!"
methods_comment: "Check that the class 'Bob' can use all of the methods\nneeded in the tests (only 'hey' for this one)."
-cdata_test_comment: Ignore this for your exercise! Tells Exercism folks when exercise cases become out of date.
+exercism_comment: "Don't worry about the stuff in here for your exercise.\nThis is for Exercism folks to check that everything is in order."
done_testing_comment: There are no more tests after this :)
INIT_comment: "'INIT' is a phaser, it makes sure that the test data is available before everything else\nstarts running (otherwise we'd have to shove the test data into the middle of the file!)"
unit: class
unit_comment: |