Sha256: 602391d9cd1267bdb6fbef1f3f082a8226348437497184c3e017d1925c0b5ac1

Contents?: true

Size: 462 Bytes

Versions: 1

Compression:

Stored size: 462 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-monitor'
Dry::Monitor.load_extensions(:sql, :rack)

SPEC_ROOT = Pathname(__dir__)

Dir[SPEC_ROOT.join('shared/**/*.rb')].each(&method(:require))
Dir[SPEC_ROOT.join('support/**/*.rb')].each(&method(:require))

RSpec.configure do |config|
  config.disable_monkey_patching!
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dry-monitor-0.3.0 spec/spec_helper.rb