Sha256: 459c14616ddc10916e26a763792ee2c33f04f00a12b342a25ceaaf8fb895fed2
Contents?: true
Size: 1.1 KB
Versions: 8
Compression:
Stored size: 1.1 KB
Contents
Feature: --line_number option To run a single example or group, you can use the --line_number option: rspec path/to/example_spec.rb --line_number 37 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_number 5 --format doc` Then the examples should all pass Then the output should contain "should be > 8" But the output 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_number 5 --format doc` Then the examples should all pass Then the output should contain "should be > 8" But the output should not contain "should be < 10"
Version data entries
8 entries across 8 versions & 1 rubygems