Sha256: d5b59d6fb8ade5a3be4f2fc72b1d94462b00507c6c6b9bf9e8f38d3091184e82
Contents?: true
Size: 866 Bytes
Versions: 4
Compression:
Stored size: 866 Bytes
Contents
require 'simplecov' SimpleCov.start 'rails' ENV['RAILS_ENV'] ||= 'test' require File.expand_path('../dummy/config/environment', __FILE__) require 'rspec/rails' require 'shoulda-matchers' require 'ffaker' RSpec.configure do |config| config.filter_run focus: true config.infer_spec_type_from_file_location! config.raise_errors_for_deprecations! config.run_all_when_everything_filtered = true config.use_transactional_fixtures = false config.mock_with :rspec do |mock| mock.syntax = [:should, :expect] end config.order = :random Kernel.srand(config.seed) config.before(:each) do allow(RSpec::Rails::ViewRendering::EmptyTemplateHandler) .to receive(:call) .and_return(%("")) if Rails.gem_version >= Gem::Version.new('6.0.0.beta1') end end Dir[File.join(File.dirname(__FILE__), 'support/**/*.rb')].each { |f| require f }
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
spree_auth_devise-4.0.1 | spec/spec_helper.rb |
spree_auth_devise-4.0.0 | spec/spec_helper.rb |
spree_auth_devise-4.0.0.rc2 | spec/spec_helper.rb |
spree_auth_devise-4.0.0.rc1 | spec/spec_helper.rb |