Sha256: 0d9267a8fb95f79432423610e55e68dee2a1e2d4affa066560bea96744e01d8f

Contents?: true

Size: 810 Bytes

Versions: 7

Compression:

Stored size: 810 Bytes

Contents

# require this in your env.rb file after you require cucumber/rails/world

# Global Setup
if defined?(ActionMailer)
  unless [:activerecord, :cache].include?(ActionMailer::Base.delivery_method)
    ActionMailer::Base.delivery_method = :test
  end
  ActionMailer::Base.perform_deliveries = true

  Before do
    # Scenario setup
    case ActionMailer::Base.delivery_method
      when :test then ActionMailer::Base.deliveries.clear
      when :cache then ActionMailer::Base.clear_cache
    end
  end
end

After do
  EmailSpec::EmailViewer.save_and_open_all_raw_emails if ENV['SHOW_EMAILS']
  EmailSpec::EmailViewer.save_and_open_all_html_emails if ENV['SHOW_HTML_EMAILS']
  EmailSpec::EmailViewer.save_and_open_all_text_emails if ENV['SHOW_TEXT_EMAILS']
end

World(EmailSpec::Helpers)
World(EmailSpec::Matchers)

Version data entries

7 entries across 7 versions & 3 rubygems

Version Path
path-email_spec-0.6.2 lib/email_spec/cucumber.rb
opsb-email_spec-0.6.2 lib/email_spec/cucumber.rb
email_spec-0.6.2 lib/email_spec/cucumber.rb
email_spec-0.6.1 lib/email_spec/cucumber.rb
email_spec-0.6.0 lib/email_spec/cucumber.rb
email_spec-0.5.0 lib/email_spec/cucumber.rb
email_spec-0.4.0 lib/email_spec/cucumber.rb