Sha256: 7ff97c3b47b9412a4ee4cc6f9527c5aa60709dfb60f831eba2dc54541de32c56

Contents?: true

Size: 505 Bytes

Versions: 1

Compression:

Stored size: 505 Bytes

Contents

# frozen_string_literal: true

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

  SimpleCov.start do
    command_name 'spec:unit'

    add_filter 'config'
    add_filter 'spec'

    minimum_coverage 88
  end
end

$LOAD_PATH << 'lib'

require 'lb-persistence'

# require spec support files and shared behavior
Dir[File.expand_path('{support,shared}/**/*.rb', __dir__)].sort.each do |file|
  require file
end

RSpec.configure do |config|
  config.include(SpecHelper)
  config.mock_framework = :rspec
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
lb-persistence-0.3.0 spec/spec_helper.rb