/usr/share/doc/ruby-rspec-expectations/features/diffing.feature is in ruby-rspec-expectations 3.7.0c1e0m0s1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | 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
"""
Scenario: diff for a multiline string and a regexp
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:"
|