class WatchDoge::Configuration::Hooks

hook is array of Proc instances

Attributes

after_regression[RW]
after_scenario[RW]
around_scenario[RW]
before_regression[RW]
before_scenario[RW]

Public Class Methods

new() click to toggle source
# File lib/watchdoge/configuration.rb, line 22
def initialize
  @before_regression = []
  @after_regression = []
  @before_scenario = []
  @after_scenario = []
  @around_scenario = nil
end