Sha256: c46920cddd3496ee6c21b6da3193ba6087ffa1ef4dc8661b0e52e258b768d60a

Contents?: true

Size: 1.51 KB

Versions: 6

Compression:

Stored size: 1.51 KB

Contents

Feature: start_with matcher

  Use the `start_with` matcher to specify that a string or array starts with 
  the expected characters or elements.

    "this string".should start_with("this")
    "this string".should_not start_with("that")
    [0,1,2].should start_with(0, 1)

  Scenario: with a string
    Given a file named "example_spec.rb" with:
      """ruby
      describe "this string" do
        it { should start_with "this" }
        it { should_not start_with "that" }

        # deliberate failures
        it { should_not start_with "this" }
        it { should start_with "that" }
      end
      """
    When I run `rspec example_spec.rb`
    Then the output should contain all of these:
      | 4 examples, 2 failures                          |
      | expected "this string" not to start with "this" |
      | expected "this string" to start with "that"     |

  Scenario: with an array
    Given a file named "example_spec.rb" with:
      """ruby
      describe [0, 1, 2, 3, 4] do
        it { should start_with 0 }
        it { should start_with(0, 1)}
        it { should_not start_with(2) }
        it { should_not start_with(0, 1, 2, 3, 4, 5) }

        # deliberate failures
        it { should_not start_with 0 }
        it { should start_with 3 }
      end
      """
    When I run `rspec example_spec.rb`
    Then the output should contain all of these:
      | 6 examples, 2 failures                       |
      | expected [0, 1, 2, 3, 4] not to start with 0 |
      | expected [0, 1, 2, 3, 4] to start with 3     |

Version data entries

6 entries across 6 versions & 3 rubygems

Version Path
librarian-puppet-0.9.9 vendor/gems/ruby/1.9.1/gems/rspec-expectations-2.12.1/features/built_in_matchers/start_with.feature
remq-0.0.4 vendor/bundle/gems/rspec-expectations-2.12.1/features/built_in_matchers/start_with.feature
remq-0.0.3 vendor/bundle/gems/rspec-expectations-2.12.1/features/built_in_matchers/start_with.feature
librarian-puppet-0.9.8 vendor/gems/ruby/1.9.1/gems/rspec-expectations-2.12.1/features/built_in_matchers/start_with.feature
rspec-expectations-2.12.1 features/built_in_matchers/start_with.feature
rspec-expectations-2.12.0 features/built_in_matchers/start_with.feature