Sha256: 15eeac97c94dc75cab569e2414539e5c772763bc19eefd5bb4a4f05367461fc6

Contents?: true

Size: 1.51 KB

Versions: 2

Compression:

Stored size: 1.51 KB

Contents

Feature: end_with matcher

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

    ```ruby
    expect("this string").to end_with "string"
    expect("this string").not_to end_with "stringy"
    expect([0, 1, 2]).to end_with 1, 2
    ```

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

        # deliberate failures
        it { should_not end_with "string" }
        it { should end_with "stringy" }
      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 end with "string" |
      | expected "this string" to end with "stringy"    |

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

        # deliberate failures
        it { should_not end_with 4 }
        it { should end_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 end with 4 |
      | expected [0, 1, 2, 3, 4] to end with 3     |

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rspec-expectations-3.0.0.beta2 features/built_in_matchers/end_with.feature
rspec-expectations-3.0.0.beta1 features/built_in_matchers/end_with.feature