Sha256: 57233bbdf5aa6f24e822f36f191a66475396e5d47154aed9b4b0be9fa71b78b2
Contents?: true
Size: 1.06 KB
Versions: 14
Compression:
Stored size: 1.06 KB
Contents
require 'simplecov' SimpleCov.start 'rails' # Configure Rails Envinronment ENV["RAILS_ENV"] = "test" require File.expand_path("../dummy/config/environment.rb", __FILE__) require "rails/test_help" require "rspec/rails" require 'mobylette/helmet' 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 config.include Mobylette::Helmet, type: :controller # == Mock Framework config.mock_with :rspec end
Version data entries
14 entries across 14 versions & 1 rubygems