Sha256: a8b8f41c86ed4b02ba82f233c0100d0a2a324bc8a99ace2de87a013809ea3ee6
Contents?: true
Size: 751 Bytes
Versions: 20
Compression:
Stored size: 751 Bytes
Contents
module <%= @namespace %> class Interface include OrigenTesters::ProgramGenerators # This will be called at the start of every flow or sub-flow (whenever Flow.create # is called). # Any options passed to Flow.create will be passed in here. # The options will contain top_level: true, whenever this is called at the start of # a new top-level flow. def startup(options = {}) end # This will be called at the end of every flow or sub-flow (at the end of every # Flow.create block). # Any options passed to Flow.create will be passed in here. # The options will contain top_level: true, whenever this is called at the end of a # top-level flow file. def shutdown(options = {}) end end end
Version data entries
20 entries across 20 versions & 2 rubygems