Skip to content
This repository was archived by the owner on Nov 30, 2024. It is now read-only.

Commit 75c2cee

Browse files
committed
dev: fix cukes to align w/ changes to failure messages in rspec-expecations
1 parent f191280 commit 75c2cee

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

features/formatters/text_formatter.feature

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,18 @@ Feature: text formatter
2929
1) Integer has a failing example
3030
Failure/Error: (7 + 5).should eq(11)
3131
32-
expected 11
33-
got 12
32+
expected: 11
33+
got: 12
3434
3535
(compared using ==)
3636
# ./integer_spec.rb:3
3737
3838
2) String has a failing example
3939
Failure/Error: "foo".reverse.should eq("ofo")
4040
41-
expected "ofo"
42-
got "oof"
41+
expected: "ofo"
42+
got: "oof"
4343
4444
(compared using ==)
4545
# ./string_spec.rb:3
4646
"""
47-

features/subject/attribute_of_subject.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Feature: attribute of subject
3434
Array
3535
when first created
3636
size
37-
should == 0
37+
should eq 0
3838
"""
3939

4040
Scenario: specify value of a nested attribute
@@ -65,7 +65,7 @@ Feature: attribute of subject
6565
Person
6666
with one phone number (555-1212)
6767
phone_numbers.first
68-
should == 555-1212
68+
should eq 555-1212
6969
"""
7070

7171
Scenario: specify value of an attribute of a hash

0 commit comments

Comments
 (0)