メインコンテンツまでスキップ

Diffing

適切な場合、失敗メッセージには自動的に差分が含まれます。

複数行の文字列の差分

次の内容で "example_spec.rb" という名前のファイルがあるとします:

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

rspec example_spec.rb を実行すると、

出力には次の内容が含まれるはずです:

       Diff:
@@ -1,4 +1,4 @@
this is the
- expected
+ actual
string

diff-lcs 1.4 での複数行の文字列と正規表現の差分

次の内容で "example_spec.rb" という名前のファイルがあるとします:

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

rspec example_spec.rb を実行すると、

出力には次の内容が含まれるはずです:

       Diff:
@@ -1,3 +1,5 @@
-/expected/m
+this is the
+ actual
+ string

diff-lcs 1.3 での複数行の文字列と正規表現の差分

次の内容で "example_spec.rb" という名前のファイルがあるとします:

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

rspec example_spec.rb を実行すると、

出力には次の内容が含まれるはずです:

       Diff:
@@ -1,2 +1,4 @@
-/expected/m
+this is the
+ actual
+ string

1行の文字列には差分がありません

次の内容で "example_spec.rb" という名前のファイルがあるとします:

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

rspec example_spec.rb を実行すると、

出力には "Diff:" が含まれないはずです。

数値には差分がありません

次の内容で "example_spec.rb" という名前のファイルがあるとします:

RSpec.describe "a number" do
it "is like another number" do
expect(1).to eq(2)
end
end

rspec example_spec.rb を実行すると、

出力には "Diff:" が含まれないはずです。