diff options
author | Christian Neukirchen <chneukirchen@gmail.com> | 2007-12-05 02:12:24 +0100 |
---|---|---|
committer | Christian Neukirchen <chneukirchen@gmail.com> | 2007-12-05 02:12:24 +0100 |
commit | 802468420c86f904e54d132d54a68189add5b220 (patch) | |
tree | 77ce48773dbafb2145ad04b8740392f9cc16ce46 | |
parent | 22d47a530ef4932afb254d01cc44fbaac12c3d71 (diff) | |
download | bacon-802468420c86f904e54d132d54a68189add5b220.tar.gz bacon-802468420c86f904e54d132d54a68189add5b220.tar.xz bacon-802468420c86f904e54d132d54a68189add5b220.zip |
Remove debugging statements
darcs-hash:20071205011224-4fc50-8aa2efe8859492107b8b56d7e6376690a41b8981.gz
-rwxr-xr-x | bin/bacon | 1 | ||||
-rw-r--r-- | lib/bacon.rb | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/bin/bacon b/bin/bacon index dd01064..4ed32e0 100755 --- a/bin/bacon +++ b/bin/bacon @@ -45,7 +45,6 @@ opts = OptionParser.new("", 24, ' ') { |opts| opts.on("-q", "--quiet", "do Test::Unit-like non-verbose output") { output = 'TestUnitOutput' } - opts.on("-p", "--tap", "do TAP (Test Anything Protocol) output") { output = 'TapOutput' } diff --git a/lib/bacon.rb b/lib/bacon.rb index ada7c8f..4e63422 100644 --- a/lib/bacon.rb +++ b/lib/bacon.rb @@ -35,7 +35,6 @@ module Bacon puts "%d specifications (%d requirements), %d failures, %d errors" % [Counter[:specifications], Counter[:requirements], Counter[:failed], Counter[:errors]] - p Bacon::Counter end end @@ -59,7 +58,6 @@ module Bacon puts "%d tests, %d assertions, %d failures, %d errors" % [Counter[:specifications], Counter[:requirements], Counter[:failed], Counter[:errors]] - p Bacon::Counter end end @@ -85,7 +83,6 @@ module Bacon puts "# %d tests, %d assertions, %d failures, %d errors" % [Counter[:specifications], Counter[:requirements], Counter[:failed], Counter[:errors]] - p Bacon::Counter end end |