All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gems.equalizer-0.0.11.spec.spec_helper.rb Maven / Gradle / Ivy

The newest version!
# encoding: utf-8

if ENV['COVERAGE'] == 'true'
  require 'simplecov'
  require 'coveralls'

  SimpleCov.formatters = [
    SimpleCov::Formatter::HTMLFormatter,
    Coveralls::SimpleCov::Formatter
  ]

  SimpleCov.start do
    command_name 'spec:unit'

    add_filter 'config'
    add_filter 'spec'
    add_filter 'vendor'

    minimum_coverage 100
  end
end

require 'equalizer'

RSpec.configure do |config|
  config.raise_errors_for_deprecations!

  config.expect_with :rspec do |expect_with|
    expect_with.syntax = :expect
  end
end




© 2015 - 2024 Weber Informatics LLC | Privacy Policy