Don't forget to super() so the failures are emitted after the spec run. vim-stuff
authorMahlon E. Smith <mahlon@martini.nu>
Mon, 20 Aug 2012 16:14:43 -0700
branchvim-stuff
changeset 24 38db5185d698
parent 23 050dd6dcf346
child 25 efe9199dbd41
Don't forget to super() so the failures are emitted after the spec run.
specky/ruby/specky_formatter.rb
--- a/specky/ruby/specky_formatter.rb	Sat Aug 18 01:47:43 2012 -0700
+++ b/specky/ruby/specky_formatter.rb	Mon Aug 20 16:14:43 2012 -0700
@@ -196,7 +196,7 @@
 class SpeckyFormatterConsole < SpeckyFormatter
 
 	def example_passed( ex );  print '.'; end
-	def example_failed( ex );  print 'F'; end
+	def example_failed( ex );  print 'F'; super; end
 	def example_pending( ex ); print '*'; end
 
 	def close