spec_cat 3.1.3 → 3.1.4
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 +4 -4
- data/lib/spec_cat/matchers/validate_with.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5634a25c20392048bac0d22477f066517dfd3075
|
|
4
|
+
data.tar.gz: 1ddf8bc14d0b9155da6a960cfe2c9c78d7df2a5f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e4fe0f1cd4594857b928a042b4a516aac37fc72c945d6762194e7f1e5aa6a4bbac33b43168b2fa7301c5ae43a393bec7015aff06989f8a167753181181d10d8
|
|
7
|
+
data.tar.gz: b2c214031cdac240cf7f20befe71c0d6dd5d00514b82dcfd88a0ac02fd2a9f357991dee5ab990fc24a54fab6993c6b978d35d3363bbf6648f532128cd719bb3d
|
|
@@ -33,10 +33,10 @@ RSpec::Matchers.define :validate_with do |expected_validator|
|
|
|
33
33
|
end
|
|
34
34
|
|
|
35
35
|
failure_message do
|
|
36
|
-
"expected to validate with #{validator}#{@options.present? ? (' with options ' + @options) : ''}"
|
|
36
|
+
"expected to validate with #{@validator}#{@options.present? ? (' with options ' + @options) : ''}"
|
|
37
37
|
end
|
|
38
38
|
|
|
39
39
|
failure_message_when_negated do
|
|
40
|
-
"do not expected to validate with #{validator}#{@options.present? ? (' with options ' + @options) : ''}"
|
|
40
|
+
"do not expected to validate with #{@validator}#{@options.present? ? (' with options ' + @options) : ''}"
|
|
41
41
|
end
|
|
42
42
|
end
|