end
trace.stub(:import, gpx) do
- perform_enqueued_jobs do
- TraceImporterJob.perform_now(trace)
- end
+ TraceImporterJob.perform_now(trace)
end
- assert_performed_jobs 1
-
email = ActionMailer::Base.deliveries.last
assert_equal trace.user.email, email.to[0]
assert_match(/success/, email.subject)
+
+ ActionMailer::Base.deliveries.clear
end
def test_failure_notification
end
trace.stub(:import, gpx) do
- perform_enqueued_jobs do
- TraceImporterJob.perform_now(trace)
- end
+ TraceImporterJob.perform_now(trace)
end
- assert_performed_jobs 1
-
email = ActionMailer::Base.deliveries.last
assert_equal trace.user.email, email.to[0]
assert_match(/failure/, email.subject)
+
+ ActionMailer::Base.deliveries.clear
end
def test_error_notification
# Check that the user gets a failure notification when something goes badly wrong
trace = create(:trace)
trace.stub(:import, -> { raise }) do
- perform_enqueued_jobs do
- TraceImporterJob.perform_now(trace)
- end
+ TraceImporterJob.perform_now(trace)
end
- assert_performed_jobs 1
-
email = ActionMailer::Base.deliveries.last
assert_equal trace.user.email, email.to[0]
assert_match(/failure/, email.subject)
+
+ ActionMailer::Base.deliveries.clear
end
end