Sha256: 1519d050d63920816a79f3e6356956a72f04dbdf9d8ab7eeebfb177b005ffc72

Contents?: true

Size: 446 Bytes

Versions: 2

Compression:

Stored size: 446 Bytes

Contents

# This is a sample file to see how the really, really basic callback system
# works. See the README for me or just dive in.
class Fourchette::Callbacks
  include Fourchette::Logger

  def initialize(params)
    @params = params
  end

  def before_all
    logger.info 'Placeholder for before steps... (see callbacks.rb to override)'
  end

  def after_all
    logger.info 'Placeholder for after steps... (see callbacks.rb to override)'
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fourchette-0.1.4 templates/callbacks.rb
fourchette-0.1.3 templates/callbacks.rb