Class: RspecInit

Inherits:
Object
  • Object
show all
Defined in:
lib/turtle_hunter/rspec_init.rb

Class Method Summary collapse

Class Method Details

.huntObject



4
5
6
7
8
9
10
# 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