Sha256: c8ad23e369f910de7c278c0e726011d7c3ffb03ae70d92bf18844eb2962f5b9b

Contents?: true

Size: 752 Bytes

Versions: 11

Compression:

Stored size: 752 Bytes

Contents

# frozen_string_literal: true
require "bundler/setup"
require 'matchers'

begin
  require 'simplecov'
  require 'simplecov-lcov'

  SimpleCov::Formatter::LcovFormatter.config do |config|
    #Coveralls is coverage by default/lcov. Send info results
    config.report_with_single_file = true
    config.single_report_path = 'coverage/lcov.info'
  end

  SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([
    SimpleCov::Formatter::HTMLFormatter,
    SimpleCov::Formatter::LcovFormatter
  ])
  SimpleCov.start do
    add_filter "/spec/"
  end
rescue LoadError
end

require 'rdf/vocab'

RSpec.configure do |config|
  config.filter_run focus: true
  config.filter_run_excluding slow: true
  config.run_all_when_everything_filtered = true
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
rdf-vocab-3.3.2 spec/spec_helper.rb
rdf-vocab-3.3.1 spec/spec_helper.rb
rdf-vocab-3.3.0 spec/spec_helper.rb
rdf-vocab-3.2.7 spec/spec_helper.rb
rdf-vocab-3.2.6 spec/spec_helper.rb
rdf-vocab-3.2.5 spec/spec_helper.rb
rdf-vocab-3.2.4 spec/spec_helper.rb
rdf-vocab-3.2.3 spec/spec_helper.rb
rdf-vocab-3.2.2 spec/spec_helper.rb
rdf-vocab-3.2.1 spec/spec_helper.rb
rdf-vocab-3.2.0 spec/spec_helper.rb