I'm trying out Ruby koans and found some tests using this _n_ , never seen it before what is it and how do I use it?

Example:

def test_objects_have_methods
           fido = Dog.new
           assert fido.methods.size > _n_
end

// John

link|improve this question
It's easier to understand what's going on if you post a link to the koan. – Andrew Grimm Oct 19 '10 at 12:19
feedback

3 Answers

up vote 3 down vote accepted

Found it:

 # Numeric replacement value.
    def _n_(value=999999, value19=:mu)
      if RUBY_VERSION < "1.9"
        value
      else
        (value19 == :mu) ? value : value19
      end
    end
link|improve this answer
feedback

It's just a variable. Variable names in ruby can use underscores (even at fist and last positions). Try ctrl-clicking it in your IDE and you'll probably see its declaration.

link|improve this answer
ctrl+click! nice! – Jordan Arsenault May 9 '11 at 22:46
feedback

Are you sure that _n_ isn't one of the "fill in the blanks" parts?

link|improve this answer
Your right, found it myself. – John Doe Oct 19 '10 at 12:31
feedback

Your Answer

 
or
required, but never shown

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