class RspecInit
Public Class Methods
hunt()
click to toggle source
# File lib/turtle_hunter/rspec_init.rb, line 4 def self.hunt RSpec.configure do |config| config.after do |example| Util.guard_against_slow_spec(example) end end end