Sha256: 34b2d0bec9de6017245dc059c484ebfdaa7afd5c10046d3e288f00a87f7ab705
Contents?: true
Size: 514 Bytes
Versions: 1
Compression:
Stored size: 514 Bytes
Contents
if RUBY_ENGINE == 'ruby' && ENV['CI'] == 'true' require 'simplecov' SimpleCov.start do add_filter 'spec/' end end begin require 'byebug' rescue LoadError; end require 'dry-logic' require 'dry/core/constants' require 'pathname' SPEC_ROOT = Pathname(__dir__) Dir[SPEC_ROOT.join('shared/**/*.rb')].each(&method(:require)) Dir[SPEC_ROOT.join('support/**/*.rb')].each(&method(:require)) include Dry::Logic include Dry::Core::Constants RSpec.configure do |config| config.disable_monkey_patching! end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dry-logic-0.4.1 | spec/spec_helper.rb |