evt-schema-fixtures 1.0.0.1 → 1.0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/schema/fixtures/assignment.rb +2 -2
- data/lib/schema/fixtures/equality.rb +2 -2
- 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: 8606dbf6652f1bcbc0dbfad74a072886b5a2f04e5d396aaa8c66940e0dfdf748
|
4
|
+
data.tar.gz: f3fb63d2a0514af32bdf9758b54f72962790507837b263d58d853697136bf448
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d14f48624fc8469686c42f9413837eed64b0b2f679cdb4c1705a59b3f5a337cac6706339ade492e83c6190dc6e81625c561afda1a9fb5be49185206f29678c7
|
7
|
+
data.tar.gz: adf21c49de98731ac98db7a253475a480491d473a0bbacab299c3e11965d1572f40561b1fa96ce3104f1b9b890dc7679259ac668d5b28de9147313133332edb3
|
@@ -50,8 +50,8 @@ module Schema
|
|
50
50
|
attribute_value = entry.compare_value
|
51
51
|
|
52
52
|
test "#{entry.compare_name}" do
|
53
|
-
detail "Default Value: #{default_attribute_value.pretty_inspect}"
|
54
|
-
detail "Assigned Value: #{attribute_value.pretty_inspect}"
|
53
|
+
detail "Default Value: #{default_attribute_value.pretty_inspect.chomp}"
|
54
|
+
detail "Assigned Value: #{attribute_value.pretty_inspect.chomp}"
|
55
55
|
|
56
56
|
refute(attribute_value == default_attribute_value)
|
57
57
|
end
|
@@ -66,8 +66,8 @@ module Schema
|
|
66
66
|
compare_attribute_value = entry.compare_value
|
67
67
|
|
68
68
|
test printed_attribute_name do
|
69
|
-
detail "#{control_class.name.split('::').last} Value: #{control_attribute_value.pretty_inspect}"
|
70
|
-
detail "#{compare_class.name.split('::').last} Value: #{compare_attribute_value.pretty_inspect}"
|
69
|
+
detail "#{control_class.name.split('::').last} Value: #{control_attribute_value.pretty_inspect.chomp}"
|
70
|
+
detail "#{compare_class.name.split('::').last} Value: #{compare_attribute_value.pretty_inspect.chomp}"
|
71
71
|
|
72
72
|
assert(compare_attribute_value == control_attribute_value)
|
73
73
|
end
|