Sha256: 3c6f64c21f16a676933c29e74e4a5b9d670ef0a71460a223c75d2c8183143956

Contents?: true

Size: 437 Bytes

Versions: 2

Compression:

Stored size: 437 Bytes

Contents

require "codeclimate-test-reporter"

CodeClimate::TestReporter.start

require "simplecov"

SimpleCov.start do
  root("lib/")
  coverage_dir("../tmp/coverage/")
end

$: << File.expand_path('../', File.dirname(__FILE__))

require 'pry'
require 'object_attorney'

Dir["./spec/**/support/**/*.rb"].each do |file|
  require file
end

RSpec.configure do |config|
  config.run_all_when_everything_filtered = true

  config.order = 'random'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
object_attorney-3.0.2 spec/spec_helper.rb
object_attorney-3.0.0 spec/spec_helper.rb