Sha256: 083dfe18e6fe5c0e55f4cb443d1e01578a28438c5de92e88c2a2e513ee30ad3a
Contents?: true
Size: 504 Bytes
Versions: 13
Compression:
Stored size: 504 Bytes
Contents
require File.join(File.dirname(__FILE__), "../spec_helper") module Emailer describe AuthSmtpFacade do describe :initialize do it "should default to standard AuthSMTP settings" do smtp = AuthSmtpFacade.new :username => 'username', :password => 'password', :domain => 'www.domain.com' smtp.settings[:host].should == 'mail.authsmtp.com' smtp.settings[:port].should == 2525 smtp.settings[:authentication].should == :cram_md5 end end end end
Version data entries
13 entries across 13 versions & 2 rubygems