Sha256: 70f851ce78d9b1846be210887c92b472a6b817397ea80e40cc038ef678ee9bf8
Contents?: true
Size: 616 Bytes
Versions: 11
Compression:
Stored size: 616 Bytes
Contents
require "simplecov" SimpleCov.start "rails" ENV["RAILS_ENV"] ||= "test" require File.expand_path("../dummy/config/environment.rb", __FILE__) require "rspec/rails" require "shoulda-matchers" require "ffaker" Dir[File.join(File.dirname(__FILE__), "support/**/*.rb")].each { |f| require f } RSpec.configure do |config| config.infer_spec_type_from_file_location! config.raise_errors_for_deprecations! config.filter_run focus: true config.run_all_when_everything_filtered = true config.use_transactional_fixtures = false config.mock_with :rspec do |mock| mock.syntax = [:should, :expect] end end
Version data entries
11 entries across 11 versions & 1 rubygems