summary refs log tree commit diff
diff options
context:
space:
mode:
-rwxr-xr-xbin/bacon1
-rw-r--r--lib/bacon.rb3
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