This repository was archived by the owner on Nov 30, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 393
/
Copy pathdiffing.feature
113 lines (107 loc) · 2.82 KB
/
diffing.feature
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
Feature: Diffing
When appropriate, failure messages will automatically include a diff.
Scenario: Diff for a multiline string
Given a file named "example_spec.rb" with:
"""ruby
RSpec.describe "a multiline string" do
it "is like another string" do
expected = <<-EXPECTED
this is the
expected
string
EXPECTED
actual = <<-ACTUAL
this is the
actual
string
ACTUAL
expect(actual).to eq(expected)
end
end
"""
When I run `rspec example_spec.rb`
Then the output should contain:
"""
Diff:
@@ -1,4 +1,4 @@
this is the
- expected
+ actual
string
"""
@skip-when-diff-lcs-1.3
Scenario: Diff for a multiline string and a regexp on diff-lcs 1.4
Given a file named "example_spec.rb" with:
"""ruby
RSpec.describe "a multiline string" do
it "is like another string" do
expected = /expected/m
actual = <<-ACTUAL
this is the
actual
string
ACTUAL
expect(actual).to match expected
end
end
"""
When I run `rspec example_spec.rb`
Then the output should contain:
"""
Diff:
@@ -1,3 +1,5 @@
-/expected/m
+this is the
+ actual
+ string
"""
@skip-when-diff-lcs-1.4
Scenario: Diff for a multiline string and a regexp on diff-lcs 1.3
Given a file named "example_spec.rb" with:
"""ruby
RSpec.describe "a multiline string" do
it "is like another string" do
expected = /expected/m
actual = <<-ACTUAL
this is the
actual
string
ACTUAL
expect(actual).to match expected
end
end
"""
When I run `rspec example_spec.rb`
Then the output should contain:
"""
Diff:
@@ -1,2 +1,4 @@
-/expected/m
+this is the
+ actual
+ string
"""
Scenario: No diff for a single line strings
Given a file named "example_spec.rb" with:
"""ruby
RSpec.describe "a single line string" do
it "is like another string" do
expected = "this string"
actual = "that string"
expect(actual).to eq(expected)
end
end
"""
When I run `rspec example_spec.rb`
Then the output should not contain "Diff:"
Scenario: No diff for numbers
Given a file named "example_spec.rb" with:
"""ruby
RSpec.describe "a number" do
it "is like another number" do
expect(1).to eq(2)
end
end
"""
When I run `rspec example_spec.rb`
Then the output should not contain "Diff:"