前提・実現したいこと
発生している問題・エラーメッセージ
解決したいテスト内容:
user_idが取得できずnilのままなのでテストが通らない.
ruby on railsで簡単なアプリを作成してます。
userのテストコードを書き終わりtweetのテストを書いているときに、以下のエラーが発生しました。
RSpecとFactoryBotをつかってエラーコードを書いてます。
エラーメッセージ
### 該当のソースコード Failures: 1) Tweet バリデーションテスト ツイート作成 descriptionの値が設定済みだと成功 Failure/Error: expect(tweet).to be_valid expected #<Tweet id: nil, description: "description", user_id: nil, created_at: nil, updated_at: nil> to be valid, but got errors: User translation missing: ja.activerecord.errors.models.tweet.attributes.user.required # ./spec/models/tweet_spec.rb:10:in `block (4 levels) in <top (required)>' 2) Tweet バリデーションテスト ツイート作成 100文字以内なら成功 Failure/Error: expect(tweet).to be_valid expected #<Tweet id: nil, description: "100以下", user_id: nil, created_at: nil, updated_at: nil> to be valid, but got errors: User translation missing: ja.activerecord.errors.models.tweet.attributes.user.required # ./spec/models/tweet_spec.rb:22:in `block (4 levels) in <top (required)>' Finished in 2.1 seconds (files took 17.02 seconds to load) 10 examples, 2 failures Failed examples: rspec ./spec/models/tweet_spec.rb:8 # Tweet バリデーションテスト ツイート作成 descriptionの値が設定済みだと成功 rspec ./spec/models/tweet_spec.rb:19 # Tweet バリデーションテスト ツイート作成 100文字以内なら成功 ERROR: 1
ソースコード
api> spec> models> tweet_spec.rb require 'rails_helper' RSpec.describe Tweet, type: :model do describe 'バリデーションテスト' do context 'ツイート作成' do it 'descriptionの値が設定済みだと成功' do tweet = build(:tweet) expect(tweet).to be_valid end it 'descriptionの値が未設定だと失敗' do tweet = build(:tweet) tweet.description = '' expect(tweet).to_not be_valid end it '100文字以内なら成功' do tweet = build(:tweet) tweet.description = "100以下" expect(tweet).to be_valid end it '100文字以上なら失敗' do tweet = build(:tweet) description = "100以下" * 100 tweet.description = description expect(tweet).to_not be_valid end end end end
api> spec> requests> api> v1> tweet_spec.rb require 'rails_helper' RSpec.describe 'Tweet', type: :request do describe 'Tweet' do before(:each) do user = create(:user) tweet = create(:tweet) end end end
api> spec> factories> users.rb FactoryBot.define do factory :user do name { 'testuser' } sequence(:email) { |n| "tester#{n}@example.com" } password { 'password' } password_confirmation { 'password' } end end
api> spec> factories> tweets.rb FactoryBot.define do factory :tweet do description { 'description' } end end
よろしくお願いします
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。