rails tutorial10章をrspecで書いていたところ以下のエラーが発生しました。初学者なのでどの点を修正した方が良いか教えていただきたいです。
other_userが機能していない理由で2,3のエラーが出ているのでしょうか。
Email has already been takenと調べDBを初期化してみましたが治りませんでした。詳しい方がいれば教えていただきたいです。
発生したエラー
1) Users has a valid factory Failure/Error: expect(FactoryBot.build(:other_user)).to be_valid expected #<User id: nil, name: "Other", email: "Other@mail.com", created_at: nil, updated_at: nil, password_digest: "$2a$04$nVI8DnNgi5QAanKyTxRHp.Pwd2eG8q7/UHuPE6bqLOf...", remember_digest: nil> to be valid, but got errors: Email has already been taken # ./spec/requests/users_edit_spec.rb:21:in `block (2 levels) in <main>' 2) Users 間違ったユーザーでログインすると編集画面にリダイレクトされる Failure/Error: subject(@other_user) ArgumentError: wrong number of arguments (given 1, expected 0) # ./spec/requests/users_edit_spec.rb:25:in `block (2 levels) in <main>' 3) Users ログインしていない時にアップデートをリダイレクトする Failure/Error: subject(@other_user) ArgumentError: wrong number of arguments (given 1, expected 0) # ./spec/requests/users_edit_spec.rb:31:in `block (2 levels) in <main>'
/spec/requests/users_edit_spec.rb require 'rails_helper' RSpec.describe "Users", type: :request do before do @user = FactoryBot.create(:user) @other_user = FactoryBot.create(:other_user) end subject do session[:user_id] = user.id end it "has a valid factory" do expect(FactoryBot.build(:other_user)).to be_valid end it '間違ったユーザーでログインすると編集画面にリダイレクトされる' do subject(@other_user) get edit_user_path(@user) expect(response).to redirect_to root_path end it 'ログインしていない時にアップデートをリダイレクトする' do subject(@other_user) patch user_path(@user), params: { user: { name: @user.name, email: @user.email } } expect(response).to redirect_to root_path end end
/spec/factories/users.rb FactoryBot.define do factory :user do name { "User" } email { "User@example.com" } password {"000000"} password_confirmation {"000000"} end factory :other_user, :class => 'User' do name { "Other" } email { "Other@mail.com" } password {"111111"} password_confirmation {"111111"} end end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。