4
我正在寫一些RSpec的測試,我發現它訪問我的梅勒類時減慢。有沒有一種方法可以完全模擬ActionMailer :: Base類,以便在電子郵件傳遞之前和之後測試控制器的其他組件?RSpec的嘲諷出來的ActionMailer
這裏是我的郵件類定義
class OrganisationMailer < ActionMailer::Base
# code to send emails
end
這裏是我寫
測試的一個require 'spec_helper'
describe OrganisationsController do
describe "#email_single" do
context "With email address" do
let(:org) {Organisation.make!}
it "redirects to listing" do
get :email_single, :id => org.id
response.should redirect_to(organisations_path)
end
end
end
end