File: spec_helper.rb

package info (click to toggle)
ruby-retryable 3.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 152 kB
  • sloc: ruby: 512; makefile: 6
file content (18 lines) | stat: -rw-r--r-- 379 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'retryable'
#require 'simplecov'

# rubocop:disable Style/ExpandPathArguments
Dir.glob(File.expand_path('../support/**/*.rb', __FILE__), &method(:require))
# rubocop:enable Style/ExpandPathArguments

#SimpleCov.start

RSpec.configure do |config|
  config.disable_monkey_patching!

  config.include(Counter)

  config.before do
    Retryable.configuration = nil
  end
end