Sha256: a1bb835a20ceffc3c3e10c352a21ae877caa2a3638f04be4bf2659c2777601f3
Contents?: true
Size: 1.02 KB
Versions: 9
Compression:
Stored size: 1.02 KB
Contents
Feature: line number option As an Rspec user I want to run one example identified by the line number Scenario: standard examples Given a file named "example_spec.rb" with: """ require "rspec/expectations" describe 9 do it "should be > 8" do 9.should be > 8 end it "should be < 10" do 9.should be < 10 end end """ When I run "rspec example_spec.rb --line 5 --format doc" Then I should see "1 example, 0 failures" Then I should see "should be > 8" But the stdout should not contain "should be < 10" Scenario: one liner Given a file named "example_spec.rb" with: """ require "rspec/expectations" describe 9 do it { should be > 8 } it { should be < 10 } end """ When I run "rspec example_spec.rb --line 5 --format doc" Then I should see "1 example, 0 failures" Then I should see "should be > 8" But the stdout should not contain "should be < 10"
Version data entries
9 entries across 9 versions & 1 rubygems