Sha256: b8958ed50412bca8370941957074e8fc7f57b1b1268aa3d66703cc41a82f0508
Contents?: true
Size: 820 Bytes
Versions: 8
Compression:
Stored size: 820 Bytes
Contents
require 'spec_helper' require 'rspec/core/formatters/progress_formatter' describe RSpec::Core::Formatters::ProgressFormatter do before do @output = StringIO.new @formatter = RSpec::Core::Formatters::ProgressFormatter.new(@output) @formatter.start(2) @formatter.stub!(:color_enabled?).and_return(false) end it "produces line break on start dump" do @formatter.start_dump @output.string.should == "\n" end it "produces standard summary without pending when pending has a 0 count" do @formatter.start_dump @formatter.dump_summary(0.00001, 2, 0, 0) @output.string.should =~ /2 examples, 0 failures/i @output.string.should_not =~ /0 pending/i end it "pushes nothing on start" do @formatter.start(4) @output.string.should == "" end end
Version data entries
8 entries across 8 versions & 1 rubygems