Sha256: 7d3c57d0728f9b147b363f09db55c1aabd1d7406730d389ca1a853028d33ee02
Contents?: true
Size: 799 Bytes
Versions: 28
Compression:
Stored size: 799 Bytes
Contents
Feature: Getting correct output As an RSpec user I want to see output only once So that I don't get confused Scenario: Run with ruby Given the file ../../resources/spec/simple_spec.rb When I run it with the ruby interpreter 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" Scenario: Run with CommandLine object Given the file ../../resources/spec/simple_spec.rb When I run it with the CommandLine object Then the exit code should be 0 And the stdout should not match "Loaded suite" And the stdout should not match /\d+ tests, \d+ assertions, \d+ failures, \d+ errors/m And the stdout should match "1 example, 0 failures"
Version data entries
28 entries across 28 versions & 5 rubygems