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.
ifstatement is causing your problem? – mu is too short Feb 3 at 1:36nilmethod in that code, just a call to thenil?method andnil.nil?is perfectly valid. The error is not coming from the code you posted. – mu is too short Feb 3 at 4:12