I'm working my way through the Ruby Koans and am currently on AboutHashes. Up to this point the assert_equals have followed a specific formatting style of: assert_equal space expected_value comma actual value (e.g., assert_equal 2, 1 + 1). But the test_creating_hashes def in About Hashes has an assert_equal that doesn't follow this pattern, and if I change it to match that pattern it fails. Specifically:
def test_creating_hashes
empty_hash = Hash.new
assert_equal {}, empty_hash # --> fails
assert_equal({}, empty_hash) # --> passes
end
So what's special about the assert_equal in this situation?
The meat of the test failure message is:
<internal:lib/rubygems/custom_require>:29:in `require': /Ruby_on_Rails/koans/about_hashes.rb:7: syntax error, unexpected ',', expecting keyword_end (SyntaxError)
assert_equal {}, empty_hash #{} are also used for blocks
^
from <internal:lib/rubygems/custom_require>:29:in `require'
from path_to_enlightenment.rb:10:in `<main>'