Sha256: dd2d732b0e489c3add808b0b7b5c2cfa4ae6454226eeb09777c1e5a4ec603e4f
Contents?: true
Size: 537 Bytes
Versions: 1
Compression:
Stored size: 537 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 'devtools/spec_helper' # 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.2.0 | spec/spec_helper.rb |