Sha256: 9a69c98bc047fd97bce151d52a3c100a7bad60fad06f62c9b87111e81d71cb7e

Contents?: true

Size: 484 Bytes

Versions: 6

Compression:

Stored size: 484 Bytes

Contents

unless ENV["COVERAGE"].nil?
  require "codeclimate-test-reporter"
  SimpleCov.start do
    formatter SimpleCov::Formatter::MultiFormatter[
      SimpleCov::Formatter::HTMLFormatter,
      CodeClimate::TestReporter::Formatter
    ]
    add_filter "/spec/"
  end
end

$LOAD_PATH.unshift File.expand_path("../../lib", __FILE__)
require "mabbre"

RSpec.configure do |config|
  config.color = true
  config.order = :rand
  config.expect_with :rspec do |c|
    c.syntax = :expect
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
mabbre-1.0.2 spec/spec_helper.rb
mabbre-1.0.1 spec/spec_helper.rb
mabbre-1.0.0 spec/spec_helper.rb
mabbre-0.0.3 spec/spec_helper.rb
mabbre-0.0.2 spec/spec_helper.rb
mabbre-0.0.1 spec/spec_helper.rb