adopt-a-hydrant/test/functional/reminders_controller_test.rb

22 lines
691 B
Ruby

require 'test_helper'
class RemindersControllerTest < ActionController::TestCase
setup do
@thing = things(:thing_1)
@dan = users(:dan)
@erik = users(:erik)
@thing.user = @dan
@thing.save!
end
test 'should send a reminder email' do
num_deliveries = ActionMailer::Base.deliveries.size
post :create, :format => :json, :reminder => {:thing_id => @thing.id, :from_user_id => @erik.id, :to_user_id => @dan.id}
assert_equal num_deliveries + 1, ActionMailer::Base.deliveries.size
assert_response :success
email = ActionMailer::Base.deliveries.last
assert_equal [@dan.email], email.to
assert_equal "Remember to shovel", email.subject
end
end