Sha256: 5f316ebbe4090c0574e0e89b3febc74c00e74d1b515bd36df7be607ad329c3e2
Contents?: true
Size: 800 Bytes
Versions: 4
Compression:
Stored size: 800 Bytes
Contents
require 'simplecov' SimpleCov.start 'rails' ENV['RAILS_ENV'] ||= 'test' begin require File.expand_path('../dummy/config/environment', __FILE__) rescue LoadError puts 'Could not load dummy application. Please ensure you have run `bundle exec rake test_app`' exit end require 'pry' require 'ffaker' require 'rspec/rails' RSpec.configure do |config| config.fail_fast = false config.filter_run focus: true config.infer_spec_type_from_file_location! config.mock_with :rspec config.raise_errors_for_deprecations! config.run_all_when_everything_filtered = true config.use_transactional_fixtures = false config.expect_with :rspec do |expectations| expectations.syntax = :expect end end Dir[File.join(File.dirname(__FILE__), '/support/**/*.rb')].each { |file| require file }
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
solidus_i18n-1.3.0 | spec/spec_helper.rb |
solidus_i18n-1.2.0 | spec/spec_helper.rb |
solidus_i18n-1.1.0 | spec/spec_helper.rb |
solidus_i18n-1.0.0 | spec/spec_helper.rb |