Sha256: ced648f9114855f5afeeb96721e286004546705f0bdbed5e38913642d01e4aa3
Contents?: true
Size: 565 Bytes
Versions: 37
Compression:
Stored size: 565 Bytes
Contents
require 'rails_helper' describe "CamaleonCms::EmailHelper" do get_current_test_site() describe "#send_email (old way)" do it "returns empty" do expect(helper.send_email('test@gmail.com', 'Test Email', 'test content', 'owenperedo@gmail.com')).to be_a_kind_of(ActionMailer::DeliveryJob) end end describe "#send_email (new way)" do it "returns empty" do expect(helper.cama_send_email('test@gmail.com', 'Test Email', {content: 'test content', from: 'owenperedo@gmail.com'})).to be_a_kind_of(ActionMailer::DeliveryJob) end end end
Version data entries
37 entries across 37 versions & 1 rubygems