Sha256: ef5378a478dc596c8086e56b18b0918573f2bc3a1df6393f548669f50f90735a

Contents?: true

Size: 722 Bytes

Versions: 6

Compression:

Stored size: 722 Bytes

Contents

# ------------------------------------------------------------
# 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

6 entries across 6 versions & 1 rubygems

Version Path
datacite-mapping-0.2.5 spec/spec_helper.rb
datacite-mapping-0.2.4 spec/spec_helper.rb
datacite-mapping-0.2.3 spec/spec_helper.rb
datacite-mapping-0.2.2 spec/spec_helper.rb
datacite-mapping-0.2.1 spec/spec_helper.rb
datacite-mapping-0.2.0 spec/spec_helper.rb