class Fourchette::Callbacks

Public Class Methods

new(params) click to toggle source
# File lib/fourchette/callbacks.rb, line 4
def initialize params
  @params = params
end

Public Instance Methods

after_all() click to toggle source
# File lib/fourchette/callbacks.rb, line 12
def after_all
  logger.info 'Placeholder for after steps...'
end
before_all() click to toggle source
# File lib/fourchette/callbacks.rb, line 8
def before_all
  logger.info 'Placeholder for before steps...'
end