Sha256: 3b3bf8dbb27b5096278dddbc0d61965c8fd35162f509a1b8db0cc59bb7b4919a
Contents?: true
Size: 408 Bytes
Versions: 2
Compression:
Stored size: 408 Bytes
Contents
#!/usr/bin/env ruby require "./lib/kommando" find_examples = Kommando.new "find examples -type f -name *" find_examples.run for example in find_examples.out.split("\r\n") do print "Running #{example} ".ljust(74, ".") example = Kommando.new "ruby #{example}" example.run raise "Example #{example} did not exit cleanly" unless example.code == 0 puts " done" end puts "" puts "all good." exit 0
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
kommando-0.0.3 | bin/e2e |
kommando-0.0.2 | bin/e2e |