Sha256: 2b901b76ec1dbea5f90fabd83072f9e4d5247d7a1cb43eaa492815823a3c9866
Contents?: true
Size: 612 Bytes
Versions: 8
Compression:
Stored size: 612 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 end Dir[File.join(File.dirname(__FILE__), 'support/**/*.rb')].each { |f| require f }
Version data entries
8 entries across 8 versions & 1 rubygems