Sha256: a5d26d2ab94b60c7b93bed4d8ecd0152dce2b23aac9c825350228923ac69220a

Contents?: true

Size: 1.02 KB

Versions: 62

Compression:

Stored size: 1.02 KB

Contents

# Configure Rails Envinronment
ENV["RAILS_ENV"] = "test"

require File.expand_path("../dummy/config/environment.rb",  __FILE__)
require "rspec/rails"

ActionMailer::Base.delivery_method = :test
ActionMailer::Base.perform_deliveries = true
ActionMailer::Base.default_url_options[:host] = "test.com"

Rails.backtrace_cleaner.remove_silencers!

# Configure capybara for integration testing
require "capybara/rails"
Capybara.default_driver   = :rack_test
Capybara.default_selector = :css

# Run any available migration
ActiveRecord::Migrator.migrate File.expand_path("../dummy/db/migrate/", __FILE__)

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

# Load Factories
require 'factory_girl'
Dir["#{File.dirname(__FILE__)}/factories/*.rb"].each {|f| require f}

RSpec.configure do |config|
  # Remove this line if you don't want RSpec's should and should_not
  # methods or matchers
  require 'rspec/expectations'
  config.include RSpec::Matchers

  # == Mock Framework
  config.mock_with :rspec
end

Version data entries

62 entries across 62 versions & 3 rubygems

Version Path
mailboxer-0.11.0 spec/spec_helper.rb
mailboxer-0.10.3 spec/spec_helper.rb
curationexperts-mailboxer-0.10.3 spec/spec_helper.rb
curationexperts-mailboxer-0.10.3.rc1 spec/spec_helper.rb
mailboxer-0.10.2 spec/spec_helper.rb
mailboxer-0.10.1 spec/spec_helper.rb
mailboxer-0.10.0 spec/spec_helper.rb
mailboxer-0.9.0 spec/spec_helper.rb
mailboxer-0.8.0 spec/spec_helper.rb
mailboxer-0.7.0 spec/spec_helper.rb
mailboxer-0.6.5 spec/spec_helper.rb
mailboxer-0.6.4 spec/spec_helper.rb
mailboxer-0.6.3 spec/spec_helper.rb
mailboxer-0.6.2 spec/spec_helper.rb
mailboxer-0.6.1 spec/spec_helper.rb
mailboxer-0.6.0 spec/spec_helper.rb
mailboxer-0.5.5 spec/spec_helper.rb
mailboxer-0.5.4 spec/spec_helper.rb
mailboxer-0.5.3 spec/spec_helper.rb
mailboxer-0.5.2 spec/spec_helper.rb