Sha256: 49abaf9e4491895a0334b2d78d2f01adc3d5b6838ce593153f4e85ab8c6d5bbe

Contents?: true

Size: 1.4 KB

Versions: 3

Compression:

Stored size: 1.4 KB

Contents

# This file is copied to spec/ when you run 'rails generate rspec:install'
ENV["RAILS_ENV"] ||= "test"
require File.expand_path("../../config/environment", __FILE__)
# Prevent database truncation if the environment is production
abort("The Rails environment is running in production mode!") if Rails.env.production?
require "spec_helper"
require "rspec/rails"
require "rspec/its"
require "rspec/wait"
require_relative "../../spec/support/file_helper"

Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }

# Checks for pending migration and applies them before tests are run.
# If you are not using ActiveRecord, you can remove this line.
ActiveRecord::Migration.maintain_test_schema!

RSpec.configure do |config|
  config.include FileHelper
  # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
  config.fixture_path = "#{::Rails.root}/spec/fixtures"

  config.use_transactional_fixtures = true

  config.infer_spec_type_from_file_location!
  config.filter_rails_from_backtrace!
  config.before(:each) do
    Sapience.reset!
  end

  config.before(:each) do
    FileUtils.cp(
      Rails.root.join("spec/fixtures/sapience.yml"),
      Rails.root.join("config/sapience.yml"),
    )
  end

  config.after(:each) do
    sapience_config = Rails.root.join("config/sapience.yml")
    FileUtils.rm(sapience_config) if File.exist?(sapience_config)
  end
  config.include FactoryGirl::Syntax::Methods
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sapience-0.2.7 test_app/spec/rails_helper.rb
sapience-0.2.6 test_app/spec/rails_helper.rb
sapience-0.2.5 test_app/spec/rails_helper.rb