Sha256: 83acce1f760582d195c074eb12890f6e9e2cb0862b790c9b050747748396e102
Contents?: true
Size: 1.45 KB
Versions: 2
Compression:
Stored size: 1.45 KB
Contents
require "simplecov" # 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 "sapience/rails" require "rspec/rails" require "rspec/its" 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. Sapience.configure do |c| c.app_name = "rails_app" end 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 FileUtils.cp( Rails.root.join("spec/fixtures/sapience.yml"), Rails.root.join("config/sapience.yml"), ) Sapience.reset! 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sapience-1.0.11 | test_apps/rails/spec/rails_helper.rb |
sapience-1.0.10 | test_apps/rails/spec/rails_helper.rb |