Skip to content

Commit

Permalink
Make specs pass in ruby 1.9
Browse files Browse the repository at this point in the history
. is no longer in ruby's  since 1.9
  • Loading branch information
foca committed Oct 19, 2010
1 parent 7a7a03a commit 72d0cbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@

require 'rubygems'
require 'postmark'
require 'lib/postmark-rails'
require 'postmark-rails'
require 'spec'
require 'spec/autorun'

ActionMailer::Base.delivery_method = :postmark
ActionMailer::Base.prepend_view_path(File.join(File.dirname(__FILE__), "fixtures", "views"))

Dir["#{File.dirname(__FILE__)}/fixtures/models/*.rb"].each { |f| require f }
Dir["#{File.dirname(__FILE__)}/fixtures/models/*.rb"].each { |f| require f }

0 comments on commit 72d0cbb

Please sign in to comment.