Sha256: 9710ad6642d82fbe08032537fb18b101a6ca698207772b285a6438c9d580f591

Contents?: true

Size: 500 Bytes

Versions: 5

Compression:

Stored size: 500 Bytes

Contents

require 'simplecov'
require 'codeclimate-test-reporter'
require 'coveralls'

SimpleCov.start do
  formatter SimpleCov::Formatter::MultiFormatter[
    SimpleCov::Formatter::HTMLFormatter,
    CodeClimate::TestReporter::Formatter,
    Coveralls::SimpleCov::Formatter
  ]

  add_filter 'spec/'
end

require 'rubygems'
require 'bundler/setup'

require_relative '../lib/locomotive/common'

RSpec.configure do |config|
  config.filter_run focused: true
  config.run_all_when_everything_filtered = true
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
locomotivecms_common-0.2.0 spec/spec_helper.rb
locomotivecms_common-0.1.0 spec/spec_helper.rb
locomotivecms_common-0.0.5 spec/spec_helper.rb
locomotivecms_common-0.0.4 spec/spec_helper.rb
locomotivecms_common-0.0.3 spec/spec_helper.rb