simple_approvals-rspec 3.1.2 → 3.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/simple_approvals/rspec/approvals.rb +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 58062f9d2760edfd82719892ff5cb7b859ddee062d60fe169269721f21fb12d8
|
4
|
+
data.tar.gz: 0e0ed4b8ccd440ffb9f829e1d90b9fbe3ef52fbca000b5b55eb5a152c354fa05
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8b1cd64285868af7604dbe14e5bbfc777987c2212617cbaa4329df897b46d77f716e4b8f0a3d77ecdcd540a4f72b29f5b6b2157f39afea1311fe620bb2c90ea7
|
7
|
+
data.tar.gz: 4f7547e83ae43ff9b8af4cad2494481358d807b96eb7a7812fd9698da983f69bffac43687a51e845889d7e041f396bbd3fe60295eeb71ce375abbf4ab78f32ed
|
@@ -63,15 +63,15 @@ class Approvals
|
|
63
63
|
|
64
64
|
expected_content = load_expected_content(approved_path, options)
|
65
65
|
|
66
|
-
if
|
66
|
+
if expected_content.include?("\n") || received_content.include?("\n")
|
67
|
+
::RSpec::Expectations.fail_with message, expected_content, received_content
|
68
|
+
else
|
67
69
|
# work around a bug in rspec-support 3.12.0's differ
|
68
70
|
# where it shows nothing when both strings are single line
|
69
71
|
# https://github.com/rspec/rspec-support/blob/v3.12.0/lib/rspec/support/differ.rb#L16-L18
|
70
72
|
message << "expected: #{expected_content.inspect}\n"
|
71
73
|
message << "received: #{received_content.inspect}\n"
|
72
74
|
::RSpec::Expectations.fail_with message
|
73
|
-
else
|
74
|
-
::RSpec::Expectations.fail_with message, expected_content, received_content
|
75
75
|
end
|
76
76
|
end
|
77
77
|
end
|