I am learning Rails with railstutorial.org, and I am confused about something: in this chapter the author tells us to do some testing in the console with the respond_to? method on a User object, and it works ok. But later, when we write the test for the :encrypted_password attribute, he uses respond_to.

Out of curiosity, I tried respond_to in the console, for a User object, and I get an error saying the method doesnt exist. Alas, if I try to write the test using respond_to? instead of respond_to, it doesnt work (the test doesnt run).

Could someone explain me the difference, and why does the test only run with 'respond_to' ?

link|improve this question

78% accept rate
feedback

4 Answers

up vote 4 down vote accepted

Ruby treats ? and ! as actual characters in a method name. respond_to and respond_to? are different. ? indicates that this is going to respond with a true or false. Specifically:

respond_to? is a Ruby method for detecting whether the class has a particular method on it. For example,

@user.respond_to?('eat_food')

would return true if the User class has an eat_food method on it.

respond_to is a Rails method for responding to particular request types. For example,

def index
  @people = Person.find(:all)

  respond_to do |format|
    format.html
    format.xml { render :xml => @people.to_xml }
  end
end

However, in the RailsTutorial link you've provided, you're seeing an RSpec method, should interacting with its own respond_to method. This wouldn't be available in your console, unless you run rails console test.

link|improve this answer
But if you read the example in the book, respond_to is not used with a request type, but with an attribute. Maybe Rails overrides the Ruby method so it also accepts attributes? – agente_secreto Jul 28 '11 at 14:21
That's an RSpec method for testing: rspec.info/documentation ... it wouldn't be available in the console unless you set ENV to testing. – Tim Sullivan Jul 28 '11 at 14:58
That makes sense, now I understand. Thank you Tim – agente_secreto Jul 28 '11 at 16:12
feedback

The test uses convenient helpers to be more user friendly.

Ruby is Ruby so using the good old respond_to? would work if you call it this way:

 @user.respond_to?(:encrypted_password).should be_true

There is another respond_to used in controllers but still nothing to do with those you already met.

link|improve this answer
feedback

respond_to? is a Boolean evaluation. The respond_to is used (normally) for determining the display information. More information here. The respond_to? checks to see if a method exists and returns true if it does and false if it doesn't.

link|improve this answer
feedback

I believe it's a mistake. respond_to is a controller method (from http://apidock.com/rails/ActionController/MimeResponds/respond_to)

def index
  @people = Person.find(:all)

  respond_to do |format|
    format.html
    format.xml { render :xml => @people.to_xml }
  end
end

What that says is, “if the client wants HTML in response to this action, just respond as we would have before, but if the client wants XML, return them the list of people in XML format.” (Rails determines the desired response format from the HTTP Accept header submitted by the client.)

And respond_to?

Returns true if obj responds to the given method.

link|improve this answer
I dont think it is a mistake, as everything works correctly with that syntax but I do think it is a bit strange that the author doesnt mention it, because in the rest of the book he explains every single new concept as it is introduced. – agente_secreto Jul 28 '11 at 14:20
feedback

Your Answer

 
or
required, but never shown

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