From the test_symbols_cannot_be_concatenated exercise in the Ruby Koans. Previous exercises had used assert_equal tests. This is the first assert_raise on the path to enlightenment.

def test_symbols_cannot_be_concatenated

  assert_raise(_____) do
    :cats + :dogs
  end
end
link|improve this question

50% accept rate
feedback

2 Answers

up vote 4 down vote accepted

NoMethodError I guess, since it makes no sense to try to sum or catenate two symbols.

link|improve this answer
2  
Please don't post answers to homework questions. Instead, post hints to help the OP figure it out on his own. – Jörg W Mittag Feb 9 '11 at 15:20
1  
@Joerg: I suspect it's a ruby koan. If this is homework, it indicates the teacher themself is plagiarizing! – Andrew Grimm Feb 9 '11 at 22:14
feedback

The error message I received was (line-breaks added for readability):

[] exception expected, not  Class: <NoMethodError>   
Message: <"undefined method `+' for :cats:Symbol">    
---Backtrace---    
/Ruby_on_Rails/koans/about_symbols.rb:89:in   
`block in test_symbols_cannot_be_concatenated'  

Following the pattern I thought I had established of looking for "expected but was", I thought the answer would be "exception". That clearly didn't work, but based on noodl's answer, I realized that for an assert_raise() the clue is the Class that is expected to be called, in this case <NoMethodError>.

This seems to be consistent with documentation at APIdock which indicates the args are each being evaluated as a __check_exception_class

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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