In the Ruby Koans, the section about_hashes.rb includes the following code and comment:

def test_changing_hashes
    hash = { :one => "uno", :two => "dos" }
    hash[:one] = "eins"

    expected = { :one => "eins", :two => "dos" }
    assert_equal true, expected == hash

    # Bonus Question: Why was "expected" broken out into a variable
    # rather than used as a literal?
end

I can't figure out the answer to the bonus question in the comment - I tried actually doing the substitution they suggest, and the result is the same. All I can figure out is that it is for readability, but I don't see general programming advice like that called out elsewhere in this tutorial.

(I know this sounds like something that would already be answered somewhere, but I can't dig up anything authoritative.)

link|improve this question

feedback

1 Answer

up vote 10 down vote accepted

It's because you can't use something like this:

assert_equal { :one => "eins", :two => "dos" }, hash

Ruby thinks that { ... } is a block. So, you should "broken it out into a variable" but you always can use assert_equal({ :one => "eins", :two => "dos" }, hash)

link|improve this answer
I totally like that answer, except that when I actually tried to substitute the hash as you suggest, it still worked fine and the assert passed. EDIT - no I didn't - I made the lesser change that left the assert comparing against 'true'. I'll try your suggestion and so I can watch it break. :) Thanks! – Bruce Sep 23 '11 at 19:50
1  
That did make it break, thanks again. I don't feel too bad about it, since the Koans haven't even introduced me to the concept of 'blocks' yet. – Bruce Sep 23 '11 at 20:13
(ruby noob here) so as we have already made the change to use a variable, why don't we just use (assert_equal expected, hash) but rather use (assert_equal true, expected == hash)? – Ege Özcan Apr 13 at 8:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.