class Busser::RunnerPlugin::Dummy

Dummy runner plugin for Busser.

@author Fletcher Nichol <fnichol@nichol.ca>

Public Instance Methods

test() click to toggle source
# File lib/busser/runner_plugin/dummy.rb, line 37
def test
  banner "[dummy] Running"
  if File.exists?(File.join(suite_path("dummy"), "foobar.txt"))
    info "[dummy] The postinstall script has been called"
  else
    warn "[dummy] The postinstall script was not called"
  end
end