File: start_with.feature

package info (click to toggle)
ruby-rspec 3.13.0c0e0m0s1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,856 kB
  • sloc: ruby: 70,868; sh: 1,423; makefile: 99
file content (48 lines) | stat: -rw-r--r-- 1,665 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
Feature: `start_with` matcher

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

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

  Scenario: With a string
    Given a file named "example_spec.rb" with:
      """ruby
      RSpec.describe "this string" do
        it { is_expected.to start_with "this" }
        it { is_expected.not_to start_with "that" }

        # deliberate failures
        it { is_expected.not_to start_with "this" }
        it { is_expected.to 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
      RSpec.describe [0, 1, 2, 3, 4] do
        it { is_expected.to start_with 0 }
        it { is_expected.to start_with(0, 1)}
        it { is_expected.not_to start_with(2) }
        it { is_expected.not_to start_with(0, 1, 2, 3, 4, 5) }

        # deliberate failures
        it { is_expected.not_to start_with 0 }
        it { is_expected.to 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     |