skill-assessment-app/test/mailers/reviewer_mailer_test.rb

15 lines
503 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-08-02 11:30:03 -05:00
require 'test_helper'
class ReviewerMailerTest < ActionMailer::TestCase
test "candidate_submission" do
candidate = candidates :dawn
mail = ReviewerMailer.candidate_submission candidate
assert_match "Results", mail.subject
assert_match candidate.test_hash, mail.subject
assert_equal candidate.quiz.reviewers.map(&:email), mail.to
2016-08-02 11:30:03 -05:00
assert_equal [ENV["default_mail_from"]], mail.from
assert_match candidate.test_hash, mail.body.encoded
end
end