前提・実現したいこと
ただいま、Railsチュートリアルの8.2.4「レイアウトの変更をテストする」に挑んでいるのですが、
fixtureファイルで定義したテスト用データを使って、test/integration/users_login_test.rbに記述いているテストコードをGreen(成功)にできません。
【環境】
Ruby 2.6.5
Rails 6.0.3.1
開発・テスト環境用DB(SQLite3)
発生している問題・エラーメッセージ
8.2.4まで一通り行い、いざrails testコマンドを実行すると以下のようなエラーメッセージが表示されます。
Error:
UsersLoginTest#test_login_with_valid_information:
NoMethodError: undefined method users' for #<UsersLoginTest:0x000000000afba540> test/integration/users_login_test.rb:8:in
setup'
該当のソースコード
--test/integration/users_login_test.rb--
require 'test_helper'
class UsersLoginTest < ActionDispatch::IntegrationTest
def setup
@user = users(:michael)
end
test "login with invalid information" do
get login_path
assert_template 'sessions/new'
post login_path, params: { session: { email: "", password: "" } }
assert_template 'sessions/new'
assert_not flash.empty?
get root_path
assert flash.empty?
end
test "login with valid information followed by logout" do
get login_path
post login_path, params: { session: { email: @user.email,
password: 'password' } }
assert is_logged_in?
assert_redirected_to @user
follow_redirect!
assert_template 'users/show'
assert_select "a[href=?]", login_path, count: 0
assert_select "a[href=?]", logout_path
assert_select "a[href=?]", user_path(@user)
delete logout_path
assert_not is_logged_in?
assert_redirected_to root_url
follow_redirect!
assert_select "a[href=?]", login_path
assert_select "a[href=?]", logout_path, count: 0
assert_select "a[href=?]", user_path(@user), count: 0
end
end
--test/fixture/users.yml--
michael:
name: Michael Example
email: michael@example.com
password_digest: <%= User.digest('password') %>
--app/models/user.rb--
class User < ApplicationRecord
before_save { self.email = email.downcase }
validates :name, presence: true, length: { maximum: 50 }
VALID_EMAIL_REGEX = /\A[\w+-.]+@[a-z\d-.]+.[a-z]+\z/i
validates :email, presence: true, length: { maximum: 255 },
format: { with: VALID_EMAIL_REGEX },
uniqueness: { case_sensitive: false }
has_secure_password
validates :password, presence: true, length: { minimum: 6 }
def User.digest(string)
cost = ActiveModel::SecurePassword.min_cost ? BCrypt::Engine::MIN_COST :
BCrypt::Engine.cost
BCrypt::Password.create(string, cost: cost)
end
end
試したこと
エラーメッセージ内容にundefinded methodと記載されていたので、スペル間違いや全角スペースを調べましたがなんの問題もありませんでした。
他にもパスが正しくないのではと確認しましたがそこに関してもモーマンタイ(無問題)でした。
ググってもこれに関する記事がなかなか見当たらず、最終的にteratailに頼ることになりました。
どなたかこの問題を解決してくださる方がいればどうかご教授ください。
よろしくお願いいたします。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
あなたの回答
tips
プレビュー