第 8 章の最初のセクションを読み終えましたが、次の 2 つのエラーに遭遇しました。
Failures:
1) Authentication signin with invalid information
Failure/Error: before { click_button "Sign in" }
NoMethodError:
undefined method `find_by' for #<Class:0xab805ec>
# ./app/controllers/sessions_controller.rb:7:in `create'
# (eval):2:in `click_button'
# ./spec/requests/authentication_pages_spec.rb:18:in `block (4 levels) in <top required)>'
2) Authentication signin with invalid information
Failure/Error: before { click_button "Sign in" }
NoMethodError:
undefined method `find_by' for #<Class:0xab805ec>
# ./app/controllers/sessions_controller.rb:7:in `create'
# (eval):2:in `click_button'
# ./spec/requests/authentication_pages_spec.rb:18:in `block (4 levels) in <top (required)>'
必要なファイル:
セッションコントローラー
class SessionsController < ApplicationController
def new
end
def create
user = User.find_by(email: params[:session][:email].downcase)
if user && user.authenticate(params[:session][:password])
# Sign the user in and redirect to the user's show page.
else
flash.now[:error] = 'Invalid email/password combination'
render 'new'
end
end
def destroy
end
end
認証ページの仕様
require 'spec_helper'
describe "Authentication" do
subject { page }
describe "signin page" do
before { visit signin_path }
it { should have_content('Sign in') }
it { should have_title('Sign in') }
end
describe "signin" do
before { visit signin_path }
describe "with invalid information" do
before { click_button "Sign in" }
it { should have_title('Sign in') }
it { should have_selector('div.alert.alert-error', text: 'Invalid') }
end
describe "after visiting another page" do
before { click_link "Home" }
it { should_not have_selector('div.alert.alert-error') }
end
end
describe "with valid information" do
let(:user) { FactoryGirl.create(:user) }
before do
fill_in "Email", with: user.email.upcase
fill_in "Password", with: user.password
click_button "Sign in"
end
it { should have_title(user.name) }
it { should have_link('Profile', href: user_path(user)) }
it { should have_link('Sign out', href: signout_path) }
it { should_not have_link('Sign in', href: signin_path) }
end
end
エラーのさまざまなスニペットを入力して調査を開始し、同様の質問を読んで解決策を試しましたが、役に立ちませんでした。コードをじっと見つめていても、問題はセッション コントローラー内の create メソッド、特に find_by メソッドに関係していることに気付きました。レールとその概念にかなり慣れていないので、私はまだ戸惑っています。どんな助けと説明も大歓迎です。