Hi I have problem trying to pass the signin failure test.

This is the test code of the sessions_controller.rb

    def create
    user = User.authenticate(params[:session][:email],
                             params[:session][:password])
    if user.nil?
      flash.now[:error] = "Invalid email/password combination."
      @title = "Sign in"
      render 'new'
    else
      # Sign the user in and redirect to the user's show page.
    end
  end

If I check in my browser and clic on submit with all fields empty, I get the following error:

NoMethodError in SessionsController

create undefined method `nil' for nil:NilClass

I check the book many times and I have code exactly as the book, but I still have the error. Any help???

What I doing wrong?

Thanks for any help.

link|improve this question

47% accept rate
Are you sure that's your real code? And are you sure that that if statement is causing your problem? – mu is too short Feb 3 at 1:36
yes, it's identical to the book. – Jean Feb 3 at 4:10
But there is no call to a nil method in that code, just a call to the nil? method and nil.nil? is perfectly valid. The error is not coming from the code you posted. – mu is too short Feb 3 at 4:12
I don't understand why you said that. Please check this link ruby.railstutorial.org/chapters/… and go to listing 9.8 – Jean Feb 3 at 13:49
when you click the submit button, what url are you going? – Zava Feb 3 at 14:47
feedback

1 Answer

up vote 0 down vote accepted

I found the error. It was a typo in my user model. Sorry

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.