Sha256: 90e5ba1b90ed4ecb59d03c34e6f550e16e68abee0b77d1e0266930c573e63db5
Contents?: true
Size: 1.2 KB
Versions: 83
Compression:
Stored size: 1.2 KB
Contents
exercise: HelloWorld version: 3 plan: 1 tests: |- # Go through the cases and check that &hello gives us the correct response. is hello, |.<expected description> for @($c-data<cases>); 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. 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!" unit: module unit_comment: |- #`( This is a 'stub' file. It's a little start on your solution. It is not a complete solution though; you will have to write some code. The ':ver<>' adverb defines the version of a module or class. The version is checked in the test suite to ensure the exercise and test suite line up. If the test is updated, it will indicate to others who test your code that some tests may no longer pass. ) example: |- sub hello is export { 'Hello, World!' } stub: |- sub hello is export { # Write your solution to pass the test suite here. # Be sure to remove all stock comments once you are done! }
Version data entries
83 entries across 83 versions & 1 rubygems