Sha256: fd51452183519437d3ae67681c0abdc496a4cd8459dd505eaea70fedfde19c23

Contents?: true

Size: 753 Bytes

Versions: 4

Compression:

Stored size: 753 Bytes

Contents

# frozen_string_literal: true

# ------------------------------------------------------------
# SimpleCov setup

if ENV['COVERAGE']
  require 'simplecov'
  require 'simplecov-console'

  SimpleCov.minimum_coverage 100
  SimpleCov.start do
    add_filter '/spec/'
    SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
      SimpleCov::Formatter::HTMLFormatter,
      SimpleCov::Formatter::Console,
    ]
  end
end

# ------------------------------------------------------------
# Rspec configuration

RSpec.configure do |config|
  config.raise_errors_for_deprecations!
  config.mock_with :rspec
end

require 'rspec_custom_matchers'

# ------------------------------------------------------------
# Datacite::Mapping

require 'datacite/mapping'

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
datacite-mapping-0.5.0 spec/spec_helper.rb
datacite-mapping-0.4.1 spec/spec_helper.rb
datacite-mapping-0.4.0 spec/spec_helper.rb
datacite-mapping-0.3.0 spec/spec_helper.rb