Sha256: 813dd2a2cc365e7041084180ccc06dcb71beeb2599bfc9850385cd23fa8a3842

Contents?: true

Size: 731 Bytes

Versions: 13

Compression:

Stored size: 731 Bytes

Contents

Feature: spec output

  When running in interop mode with test/unit, RSpec will output
  the RSpec summary, but not the test/unit summary.

  Scenario Outline: Interop mode with test/unit
    Given a file named "simple_spec.rb" with:
    """
    require 'rspec/autorun'

    describe "Running an Example" do
      it "should not output twice" do
        true.should be_true
      end
    end
    """
    When I run "<Command> simple_spec.rb"
    Then the exit code should be 0
    And the stdout should not match /\d+ tests, \d+ assertions, \d+ failures, \d+ errors/m
    And the stdout should match "1 example, 0 failures"

  Scenarios: Run with ruby and rspec/commands
    | Command     |
    | ruby        |
    | cmdline.rb  |

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
rspec-core-2.0.0.beta.3 features-pending/interop/rspec_output.feature
rspec-core-2.0.0.beta.2 features-pending/interop/rspec_output.feature
rspec-core-2.0.0.beta.1 features-pending/interop/rspec_output.feature
rspec-core-2.0.0.a10 features-pending/interop/rspec_output.feature
rspec-core-2.0.0.a9 features-pending/interop/rspec_output.feature
rspec-core-2.0.0.a8 features-pending/interop/rspec_output.feature
rspec-core-2.0.0.a7 features-pending/interop/rspec_output.feature
rspec-core-2.0.0.a6 features-pending/interop/rspec_output.feature
rspec-core-2.0.0.a5 features-pending/interop/rspec_output.feature
rspec-core-2.0.0.a4 features-pending/interop/rspec_output.feature
rspec-core-2.0.0.a3 features-pending/interop/rspec_output.feature
rspec-core-2.0.0.a2 features-pending/interop/rspec_output.feature
rspec-core-2.0.0.a1 features-pending/interop/rspec_output.feature