simple_approvals-rspec 3.2.1 → 3.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 42d9ce7b7a184209580b32a1d649adad0375032edaf696e014fdfe5c21a48410
4
- data.tar.gz: 076b822c022e69016c4d7e1af509d7deb1c610eb67a58433cf6fa9997c0c372b
3
+ metadata.gz: 5bacb40985faf88373afeb0dc01b6fc86d8d3ac9aff24845363b6740c7712ea0
4
+ data.tar.gz: 64b1079ec825faa930afaa8efa7bda1f6df34e9da28379c67ef8564419a6bb9c
5
5
  SHA512:
6
- metadata.gz: e004a08fa68c812213dac6593931f771cd16a1762956845696d2f4e21b19dac769a34a4aed4d342b63b34c9cbae4e77ba16b288351197a3a9c15dca5c54922d5
7
- data.tar.gz: 5471acf5d63b7d9906870891a87564825b6eb9895511c77ddec612acfb01c2c2955845a7123628a8a3059aa6f0d199c568e0a7ff986dc7104b4c8460f634da37
6
+ metadata.gz: b217da3fe2a656ecd0f6750789164036587726423138a6dc7b12f858880bb1f04d12468637335b8034acf2476be4c84316b67b2c24fac5ebd4a9f4dffa0349dd
7
+ data.tar.gz: 93faab2db5755afe9fa3e04c8d472a384baf988e153d1e72917df474f027fbade9efc7b2c3481489a02f95eee33de7bbb669b09d4987a595f9812431ae799f08
@@ -63,15 +63,15 @@ class Approvals
63
63
 
64
64
  expected_content = load_expected_content(approved_path, options)
65
65
 
66
- if !expected_content.include?("\n") || !received_content.include?("\n")
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_approvals-rspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.1
4
+ version: 3.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Alpert