Sha256: 8926a991cb6af33b73a254b41df44244cf3cf85caa9f5142ffb5ab5fc73e6bde
Contents?: true
Size: 1.94 KB
Versions: 5
Compression:
Stored size: 1.94 KB
Contents
require 'spec_helper' module AlchemyCrm describe Mailing do before(:all) do @mailing = Mailing.new(:name => 'Baz Mailing', :additional_email_addresses => "jim@family.com, jon@doe.com, jane@family.com, \n") @newsletter = Newsletter.create!(:name => 'Newsletter', :layout => 'newsletter_layout_standard') @mailing.newsletter = @newsletter @mailing.save! end describe "#additional_emails" do it "should return an array with email adresses" do @mailing.additional_emails.should == ["jim@family.com", "jon@doe.com", "jane@family.com"] end end describe "#contacts_from_additional_email_addresses" do it "should return an array of contacts" do @mailing.contacts_from_additional_email_addresses.collect(&:email).should == ["jim@family.com", "jon@doe.com", "jane@family.com"] end end describe "#contacts" do before(:each) do @verified_contact = Contact.new(:email => 'jon@doe.com', :firstname => 'Jon', :lastname => 'Doe', :salutation => 'mr') @verified_contact.verified = true @verified_contact.save! @subscription = Subscription.create!(:contact => @verified_contact, :newsletter => @newsletter, :verified => true, :wants => true) end it "should return all contacts from additional email addresses and newsletter contacts" do @mailing.contacts.collect(&:email).should == ["jon@doe.com", "jim@family.com", "jane@family.com"] end end describe '#before_create' do it "should set sha1 and salt" do @mailing.sha1.should_not be_nil @mailing.salt.should_not be_nil end end describe '#after_create' do it "should create a page with correct page layout" do @mailing.page.should be_an_instance_of(Alchemy::Page) @mailing.page.page_layout.should == "newsletter_layout_standard" end end after(:all) do @mailing.destroy end end end
Version data entries
5 entries across 5 versions & 1 rubygems