Sha256: df4720ca4adb7e2d4a698607e1c28b185d81094e5ce2f9b8181290726db51902
Contents?: true
Size: 1.15 KB
Versions: 10
Compression:
Stored size: 1.15 KB
Contents
require File.dirname(__FILE__) + '/../../../spec_helper' require 'spec/runner/formatter/failing_examples_formatter' module Spec module Runner module Formatter describe FailingExamplesFormatter do before(:each) do @io = StringIO.new options = mock('options') @formatter = FailingExamplesFormatter.new(options, @io) end it "should add example name for each failure" do example_group_1 = Class.new(ExampleGroup).describe("A") example_group_2 = Class.new(example_group_1).describe("B") @formatter.add_example_group(example_group_1) @formatter.example_failed(example_group_1.it("a1"){}, nil, ::Spec::Runner::Reporter::Failure.new(nil, RuntimeError.new)) @formatter.add_example_group(example_group_2) @formatter.example_failed(example_group_2.it("b2"){}, nil, ::Spec::Runner::Reporter::Failure.new(nil, RuntimeError.new)) @formatter.example_failed(example_group_2.it("b3"){}, nil, ::Spec::Runner::Reporter::Failure.new(nil, RuntimeError.new)) @io.string.should eql(<<-EOF A a1 A B b2 A B b3 EOF ) end end end end end
Version data entries
10 entries across 10 versions & 3 rubygems