分からないこと
Factorybotを利用してcreateをした際に発生するエラーの内容、原因と解消のための対策。
#現状
以下のようにテストコードを用意して、bin/rspecを実行しました。
意図としては、Factoryを利用してユーザーと、そのユーザーが作成者である質問データをつくる、というものです。
questions_controller_spec.rb
Ruby
1RSpec.describe QuestionsController, type: :controller do 2 describe "#index" do 3 context "as an authenticated user" do 4 before do 5 @user = FactoryBot.create(:user) 6 @question = create(:question, user: @user) 7 end
spec/factories/users.rb
Ruby
1FactoryBot.define do 2 factory :user do 3 name "Jon" 4 sequence(:email) { |n| "tester#{n}@example.com"} 5 password "11111111" 6 end 7end
spec/factories/questions.rb
Ruby
1FactoryBot.define do 2 factory :question do 3 sequense(:title) { |n| "question_title#{n}"} 4 sequense(:body) { |n| "question_body#{n}"} 5 association :user 6 end 7end
実行したところ、
`add_attribute': Both value and block given (FactoryBot::AttributeDefinitionError)
というエラーが出ます。
ググったのですが、このエラーが何を指しているのかも分からない、という状態です。
createする過程で属性(?)の重複がある、という内容かと思いましたが、ユーザーと質問なので全く別なものだという認識です。
知見がおありの方、おかしな点をご指摘いただけますと大変ありがたいです。宜しくお願いいたします。
あなたの回答
tips
プレビュー