From e818015a47ddb3b735f8366730674ef504deef91 Mon Sep 17 00:00:00 2001 From: Jaime Alvarez Date: Fri, 9 Jun 2017 06:10:45 +0000 Subject: [PATCH] Add book keeping to Bob problem test --- exercises/bob/bob_test.rb | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/exercises/bob/bob_test.rb b/exercises/bob/bob_test.rb index be4e7ee040..e760dcc56f 100755 --- a/exercises/bob/bob_test.rb +++ b/exercises/bob/bob_test.rb @@ -131,4 +131,25 @@ def test_on_multiple_line_questions no) assert_equal 'Whatever.', bob.hey(remark), feedback(remark) end + + # Problems in exercism evolve over time, as we find better ways to ask + # questions. + # The version number refers to the version of the problem you solved, + # not your solution. + # + # Define a constant named VERSION inside of the top level BookKeeping + # module, which may be placed near the end of your file. + # + # In your file, it will look like this: + # + # module BookKeeping + # VERSION = 1 # Where the version number matches the one in the test. + # end + # + # If you are curious, read more about constants on RubyDoc: + # http://ruby-doc.org/docs/ruby-doc-bundle/UsersGuide/rg/constants.html + + def test_bookkeeping + assert_equal 1, BookKeeping::VERSION + end end