Sha256: cde3c7acbdf49c1753570a0df6336146803a91ba2e7e6f5ce2c81af1bdec3e4d

Contents?: true

Size: 551 Bytes

Versions: 9

Compression:

Stored size: 551 Bytes

Contents

# frozen_string_literal: true
# encoding: utf-8

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

  SimpleCov.start do
    command_name 'spec:unit'

    add_filter 'config'
    add_filter 'spec'

    minimum_coverage 100
  end
end

$LOAD_PATH << 'lib'

require 'lb-project'

require 'devtools/spec_helper'

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

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

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
lb-project-0.3.1 spec/spec_helper.rb
lb-project-0.3.0 spec/spec_helper.rb
lb-project-0.2.3 spec/spec_helper.rb
lb-project-0.2.2 spec/spec_helper.rb
lb-project-0.2.1 spec/spec_helper.rb
lb-project-0.2.0 spec/spec_helper.rb
lb-project-0.1.1 spec/spec_helper.rb
lb-project-0.1.0 spec/spec_helper.rb
lb-project-0.0.1 spec/spec_helper.rb