Sha256: ea086c00f2e9058a4e78d7365e9bc2918ad1a2a76084e28c96481561848913d8

Contents?: true

Size: 453 Bytes

Versions: 1

Compression:

Stored size: 453 Bytes

Contents

formatter :table
formatter :announcer
formatter :default

run "an unimportant failing command" do
  `false`
  unimportant!
end

run "a normal command" do
  `echo You should see this output`
end

run "an important failing command" do
  `false`
  important!
end

run "another normal command" do
  `echo You should never see this`
end

run "a forced command" do
  `true`
  forced!
end

run "this runs because it failed" do
  `true`
  only_when_failed!
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
scripted-0.0.1 examples/important.rb