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