Sha256: 85b92aca9c876af30f57cddffa0e2c062cefad33825af05e919ae88ce36cd81f
Contents?: true
Size: 810 Bytes
Versions: 10
Compression:
Stored size: 810 Bytes
Contents
require File.dirname(__FILE__) + '/../../../spec_helper.rb' module Spec module Runner module Formatter describe "FailingExamplesFormatter" do before(:each) do @io = StringIO.new @formatter = FailingExamplesFormatter.new(@io) end it "should add example name for each failure" do @formatter.add_behaviour("b 1") @formatter.example_failed("e 1", nil, Reporter::Failure.new(nil, RuntimeError.new)) @formatter.add_behaviour("b 2") @formatter.example_failed("e 2", nil, Reporter::Failure.new(nil, RuntimeError.new)) @formatter.example_failed("e 3", nil, Reporter::Failure.new(nil, RuntimeError.new)) @io.string.should eql(<<-EOF b 1 e 1 b 2 e 2 b 2 e 3 EOF ) end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems