I'm trying to learn Ruby through Koans but I'm stuck on the 6th step.

Here's the code:

def test_you_dont_get_null_pointer_errors_when_calling_methods_on_nil  
  # What happens when you call a method that doesn't exist.    
  # The following begin/rescue/end code block captures the exception and  
  # make some assertions about it.  

  begin
    nil.some_method_nil_doesnt_know_about
  rescue Exception => ex
    # What exception has been caught?
    assert_equal __, ex.class

    # What message was attached to the exception?
    # (HINT: replace __ with part of the error message.)
    assert_match(/__/, ex.message)
  end
end

I know I'm supposed to replace the __ with something to do with the error message "NoMethodError" but I can't seem to figure it out.

This is the error message that I get when I run the "path_to_enlightenment.rb":

The answers you seek...
  <"FILL ME IN"> expected but was  <NoMethodError>.

I would really appreciate some guidance with this - it's driving me insane! I would love to know the answer and a possible explanation. Thank you!

link|improve this question

feedback

5 Answers

up vote 9 down vote accepted

The answer here is "NoMethodError"

you need the items on either side of the , to be equal, therefore making them both ex.class will do that.

Then you'll need to go on to /__/ Below.

link|improve this answer
Thank you Elliot. – mmichael Sep 30 '10 at 1:34
Isn't that kind of cheating? Making a test pass by simply doing a 1 == 1 isn't valid, I would think. I'm trying to answer this one too – BobC May 7 '11 at 14:47
No, its asking you what error you're going to get for using a method an object doesn't know about. And because assert equal is all about making 1 == 1. NoMethodError must equal NoMethodError. – Elliot May 9 '11 at 15:34
feedback

This is kind of trivial, just substitute __ with the actual

assert_equal NoMethodError, ex.class 
link|improve this answer
feedback

I'm only on Koen 83, but in most of the Koens you can find the "answer" in the section appropriately titled "The answers you seek..." immediately after "<"FILL ME IN"> expected but was". Every now and then I've broken the RubyKoan framework and I'll get this oldie ascii graphic (I'm not sure if it's supposed to be cupped hands or a tree, but hopefully you know it when you see it); in these cases the error message below the ascii graphic has been helpful.

link|improve this answer
feedback

I had to put the assert_equal statement into parens to get this one to pass. Must be a bug.

  def test_you_dont_get_null_pointer_errors_when_calling_methods_on_nil
    # What happens when you call a method that doesn't exist.  The
    # following begin/rescue/end code block captures the exception and
    # make some assertions about it.
    begin
      nil.some_method_nil_doesnt_know_about
    rescue Exception => ex
      # What exception has been caught?
      assert_equal(NoMethodError, ex.class)

      # What message was attached to the exception?
      # (HINT: replace __ with part of the error message.)
      assert_match("undefined method", ex.message)
    end
  end
link|improve this answer
What error message did you get when you didn't have parens? – Andrew Grimm May 26 '11 at 22:56
feedback

when you fill in the NoMethodError, you also need to fill in the error message (something to the effect of "undefined method 'some_methd..") you have to replace all the /__/ with your term not just the underscores

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.