Sha256: 27d2975e50635b9efda32c07232d01e8b9b010bca463b19394504b56c3ce5617

Contents?: true

Size: 1.51 KB

Versions: 8

Compression:

Stored size: 1.51 KB

Contents

# encoding: utf-8

require 'xcpretty'
require 'fixtures/constants'

module XCPretty

  describe Reporter do

    before(:each) do
      @reporter = Reporter.new(path: "example_file")
    end

    it "reports a passing test" do
      @reporter.format_passing_test("RACCommandSpec", "_tupleByAddingObject__should_add_a_non_nil_object", "0.001")
      @reporter.tests.should include("_tupleByAddingObject__should_add_a_non_nil_object PASSED")
    end

    it "reports a failing test" do
      @reporter.format_failing_test("RACCommandSpec", "enabled_signal_should_send_YES_while_executing_is_YES_and_allowsConcurrentExecution_is_YES", "expected: 1, got: 0", 'path/to/file')
      @reporter.tests.should include("enabled_signal_should_send_YES_while_executing_is_YES_and_allowsConcurrentExecution_is_YES in path/to/file FAILED: expected: 1, got: 0")
    end

    it "reports a pending test" do
      @reporter.format_pending_test("RACCommandSpec", "_tupleByAddingObject__should_add_a_non_nil_object")
      @reporter.tests.should include("_tupleByAddingObject__should_add_a_non_nil_object IS PENDING")
    end

    it "writes to disk" do
      @reporter.format_passing_test("RACCommandSpec", "_tupleByAddingObject__should_add_a_non_nil_object", "0.001")
      file = double("file stub")
      File.should_receive(:open).with("example_file", "w").and_yield(file)
      file.should_receive(:write).with("_tupleByAddingObject__should_add_a_non_nil_object PASSED\nFINISHED RUNNING 1 TESTS WITH 0 FAILURES")
      @reporter.write_report

    end

  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
xcpretty-0.4.0 spec/xcpretty/reporters/reporter_spec.rb
xcpretty-security-patched-0.3.2 spec/xcpretty/reporters/reporter_spec.rb
xcpretty-security-patched-0.3.0 spec/xcpretty/reporters/reporter_spec.rb
xcpretty-0.3.0 spec/xcpretty/reporters/reporter_spec.rb
xcpretty-0.2.8 spec/xcpretty/reporters/reporter_spec.rb
xcpretty-0.2.7 spec/xcpretty/reporters/reporter_spec.rb
xcpretty-0.2.6 spec/xcpretty/reporters/reporter_spec.rb
xcpretty-0.2.4 spec/xcpretty/reporters/reporter_spec.rb