Skip to content

Commit

Permalink
mailerのテストのfixtureをシステムテストと統一した
Browse files Browse the repository at this point in the history
  • Loading branch information
keiz1213 committed Oct 2, 2022
1 parent 756f6ba commit b8e9048
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/mailers/notification_mailer_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -387,12 +387,12 @@ class NotificationMailerTest < ActionMailer::TestCase

test 'a_week_after_last_answer' do
user = users(:kimura)
question = questions(:question8)
question = questions(:question15)
Notification.create!(
kind: 21,
sender: user,
user: user,
message: 'Q&A「テストの質問」のベストアンサーがまだ選ばれていません。',
message: 'Q&A「最後の回答から1週間経過した時に質問者に通知するテスト用」のベストアンサーがまだ選ばれていません。',
link: "/questions/#{question.id}",
read: false
)
Expand All @@ -409,7 +409,7 @@ class NotificationMailerTest < ActionMailer::TestCase
email = ActionMailer::Base.deliveries.last
assert_equal ['noreply@bootcamp.fjord.jp'], email.from
assert_equal ['kimura@fjord.jp'], email.to
assert_equal '[FBC] kimuraさんの質問【 テストの質問 】のベストアンサーがまだ選ばれていません。', email.subject
assert_equal '[FBC] kimuraさんの質問【 最後の回答から1週間経過した時に質問者に通知するテスト用 】のベストアンサーがまだ選ばれていません。', email.subject
assert_match(/まだ選ばれていません/, email.body.to_s)
end
end

0 comments on commit b8e9048

Please sign in to comment.