Sha256: b20fc5a5f1da839f9b9c5594f611f547f97527a48643c85f18605d2138deebce

Contents?: true

Size: 1.01 KB

Versions: 4

Compression:

Stored size: 1.01 KB

Contents

# Configure Rails Envinronment
ENV["RAILS_ENV"] = "test"
if ENV["COVERAGE"]
  require 'simplecov'
  SimpleCov.start 'rails'
end

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

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 }

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

4 entries across 4 versions & 1 rubygems

Version Path
on_the_spot-1.1.5 spec/spec_helper.rb
on_the_spot-1.1.4 spec/spec_helper.rb
on_the_spot-1.1.3 spec/spec_helper.rb
on_the_spot-1.1.2 spec/spec_helper.rb