13 lines
414 B
Ruby
13 lines
414 B
Ruby
|
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_equal [candidate.recruiter.email], mail.to
|
||
|
assert_equal [ENV["default_mail_from"]], mail.from
|
||
|
assert_match candidate.test_hash, mail.body.encoded
|
||
|
end
|
||
|
end
|