Sha256: 9cf926098388d3344b7e1aea51a08eb9096922132d88f6f70d2cc9d3a2f28734

Contents?: true

Size: 800 Bytes

Versions: 10

Compression:

Stored size: 800 Bytes

Contents

if ENV["COVERAGE"]
  # Run Coverage report
  require 'simplecov'
  SimpleCov.start do
    add_group 'Controllers', 'app/controllers'
    add_group 'Helpers', 'app/helpers'
    add_group 'Mailers', 'app/mailers'
    add_group 'Models', 'app/models'
    add_group 'Views', 'app/views'
    add_group 'Libraries', 'lib'
  end
end

# This file is copied to ~/spec when you run 'ruby script/generate rspec'
# from the project root directory.
ENV["RAILS_ENV"] ||= 'test'

require 'spree/testing_support/shoulda_matcher_configuration'

RSpec.configure do |config|
  config.color = true
  config.mock_with :rspec
  config.raise_errors_for_deprecations!
  
  config.fixture_path = "#{::Rails.root}/spec/fixtures"

  config.use_transactional_fixtures = false

  config.fail_fast = ENV['FAIL_FAST'] || false
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
spree_cmd-3.1.5 spec/spec_helper.rb
spree_cmd-3.1.4 spec/spec_helper.rb
spree_cmd-3.1.3 spec/spec_helper.rb
spree_cmd-3.1.2 spec/spec_helper.rb
spree_cmd-3.1.1 spec/spec_helper.rb
spree_cmd-3.1.0 spec/spec_helper.rb
spree_cmd-3.1.0.rc4 spec/spec_helper.rb
spree_cmd-3.1.0.rc3 spec/spec_helper.rb
spree_cmd-3.1.0.rc2 spec/spec_helper.rb
spree_cmd-3.1.0.rc1 spec/spec_helper.rb