2016-09-08 10:25:33 -05:00
|
|
|
# frozen_string_literal: true
|
2016-08-02 10:35:33 -05:00
|
|
|
require 'test_helper'
|
|
|
|
|
|
|
|
class RecruiterMailerTest < ActionMailer::TestCase
|
|
|
|
test "candidate_created" do
|
|
|
|
candidate = candidates :martha
|
|
|
|
mail = RecruiterMailer.candidate_created candidate
|
|
|
|
assert_match candidate.name, 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
|
|
|
|
|
|
|
|
test "candidate_submitted" do
|
2017-02-27 09:11:07 -06:00
|
|
|
candidate = candidates :elsie
|
|
|
|
manager = users :manager
|
2016-08-02 10:35:33 -05:00
|
|
|
mail = RecruiterMailer.candidate_submitted candidate
|
|
|
|
assert_match candidate.name, mail.subject
|
|
|
|
assert_equal [candidate.recruiter.email], mail.to
|
|
|
|
assert_equal [ENV["default_mail_from"]], mail.from
|
|
|
|
assert_match candidate.name, mail.body.encoded
|
2017-02-27 09:11:07 -06:00
|
|
|
assert_match manager.name, mail.body.encoded
|
2016-08-02 10:35:33 -05:00
|
|
|
end
|
2016-11-30 18:55:27 -06:00
|
|
|
|
2017-03-02 10:21:30 -06:00
|
|
|
test "candidate_reviewed" do
|
2016-11-30 18:55:27 -06:00
|
|
|
candidate = candidates :stacy
|
2017-03-02 10:21:30 -06:00
|
|
|
mail = RecruiterMailer.candidate_reviewed candidate
|
2016-11-30 18:55:27 -06:00
|
|
|
assert_match candidate.name, mail.subject
|
|
|
|
assert_equal [candidate.recruiter.email], mail.to
|
|
|
|
assert_equal [ENV["default_mail_from"]], mail.from
|
2017-03-02 10:21:30 -06:00
|
|
|
assert_match candidate.review_status, mail.body.encoded
|
2016-11-30 18:55:27 -06:00
|
|
|
assert_match candidate.name, mail.body.encoded
|
2017-03-02 10:21:30 -06:00
|
|
|
assert_match candidate.review_comments, mail.body.encoded
|
2016-11-30 18:55:27 -06:00
|
|
|
end
|
2016-08-02 10:35:33 -05:00
|
|
|
end
|