super_diff 0.8.0 → 0.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +65 -26
- data/lib/super_diff/active_record/differs/active_record_relation.rb +1 -2
- data/lib/super_diff/active_record/differs.rb +1 -1
- data/lib/super_diff/active_record/object_inspection/inspection_tree_builders/active_record_model.rb +5 -13
- data/lib/super_diff/active_record/object_inspection/inspection_tree_builders/active_record_relation.rb +1 -3
- data/lib/super_diff/active_record/object_inspection/inspection_tree_builders.rb +2 -2
- data/lib/super_diff/active_record/object_inspection.rb +1 -1
- data/lib/super_diff/active_record/operation_tree_builders/active_record_model.rb +1 -2
- data/lib/super_diff/active_record/operation_tree_builders/active_record_relation.rb +1 -2
- data/lib/super_diff/active_record/operation_tree_builders.rb +2 -2
- data/lib/super_diff/active_record/operation_tree_flatteners.rb +1 -1
- data/lib/super_diff/active_record/operation_trees.rb +1 -1
- data/lib/super_diff/active_record.rb +7 -15
- data/lib/super_diff/active_support/differs/hash_with_indifferent_access.rb +5 -6
- data/lib/super_diff/active_support/differs.rb +1 -1
- data/lib/super_diff/active_support/object_inspection/inspection_tree_builders/hash_with_indifferent_access.rb +3 -9
- data/lib/super_diff/active_support/object_inspection/inspection_tree_builders.rb +1 -1
- data/lib/super_diff/active_support/object_inspection.rb +1 -1
- data/lib/super_diff/active_support/operation_tree_builders/hash_with_indifferent_access.rb +5 -6
- data/lib/super_diff/active_support/operation_tree_builders.rb +1 -1
- data/lib/super_diff/active_support/operation_tree_flatteners.rb +1 -1
- data/lib/super_diff/active_support/operation_trees.rb +1 -1
- data/lib/super_diff/active_support.rb +6 -11
- data/lib/super_diff/colorized_document_extensions.rb +2 -4
- data/lib/super_diff/configuration.rb +14 -8
- data/lib/super_diff/csi/color.rb +4 -4
- data/lib/super_diff/csi/colorized_document.rb +12 -16
- data/lib/super_diff/csi/document.rb +8 -19
- data/lib/super_diff/csi/eight_bit_color.rb +19 -19
- data/lib/super_diff/csi/four_bit_color.rb +82 -31
- data/lib/super_diff/csi/twenty_four_bit_color.rb +12 -11
- data/lib/super_diff/csi/uncolorized_document.rb +2 -6
- data/lib/super_diff/csi.rb +10 -14
- data/lib/super_diff/diff_formatters/collection.rb +35 -41
- data/lib/super_diff/differs/default_object.rb +1 -1
- data/lib/super_diff/differs/defaults.rb +1 -1
- data/lib/super_diff/differs/main.rb +2 -13
- data/lib/super_diff/equality_matchers/array.rb +10 -12
- data/lib/super_diff/equality_matchers/base.rb +1 -1
- data/lib/super_diff/equality_matchers/default.rb +2 -4
- data/lib/super_diff/equality_matchers/defaults.rb +1 -1
- data/lib/super_diff/equality_matchers/hash.rb +10 -12
- data/lib/super_diff/equality_matchers/multiline_string.rb +11 -13
- data/lib/super_diff/equality_matchers/primitive.rb +10 -12
- data/lib/super_diff/equality_matchers/singleline_string.rb +10 -12
- data/lib/super_diff/equality_matchers.rb +1 -1
- data/lib/super_diff/errors.rb +3 -3
- data/lib/super_diff/gem_version.rb +3 -3
- data/lib/super_diff/helpers.rb +11 -7
- data/lib/super_diff/implementation_checks.rb +2 -2
- data/lib/super_diff/line.rb +3 -3
- data/lib/super_diff/object_inspection/inspection_tree.rb +46 -60
- data/lib/super_diff/object_inspection/inspection_tree_builders/array.rb +2 -6
- data/lib/super_diff/object_inspection/inspection_tree_builders/custom_object.rb +3 -9
- data/lib/super_diff/object_inspection/inspection_tree_builders/default_object.rb +5 -14
- data/lib/super_diff/object_inspection/inspection_tree_builders/defaults.rb +1 -1
- data/lib/super_diff/object_inspection/inspection_tree_builders/hash.rb +4 -12
- data/lib/super_diff/object_inspection/inspection_tree_builders/time_like.rb +6 -23
- data/lib/super_diff/object_inspection/inspection_tree_builders.rb +9 -9
- data/lib/super_diff/object_inspection/nodes/as_lines_when_rendering_to_lines.rb +8 -20
- data/lib/super_diff/object_inspection/nodes/as_prefix_when_rendering_to_lines.rb +1 -5
- data/lib/super_diff/object_inspection/nodes/as_prelude_when_rendering_to_lines.rb +1 -5
- data/lib/super_diff/object_inspection/nodes/as_single_line.rb +3 -7
- data/lib/super_diff/object_inspection/nodes/base.rb +9 -14
- data/lib/super_diff/object_inspection/nodes/inspection.rb +26 -34
- data/lib/super_diff/object_inspection/nodes/nesting.rb +1 -1
- data/lib/super_diff/object_inspection/nodes/only_when.rb +2 -6
- data/lib/super_diff/object_inspection/nodes/text.rb +1 -5
- data/lib/super_diff/object_inspection/nodes/when_empty.rb +2 -6
- data/lib/super_diff/object_inspection/nodes/when_non_empty.rb +2 -6
- data/lib/super_diff/object_inspection/nodes/when_rendering_to_lines.rb +1 -1
- data/lib/super_diff/object_inspection/nodes/when_rendering_to_string.rb +1 -5
- data/lib/super_diff/object_inspection/nodes.rb +7 -7
- data/lib/super_diff/object_inspection.rb +3 -3
- data/lib/super_diff/operation_tree_builders/array.rb +12 -11
- data/lib/super_diff/operation_tree_builders/base.rb +17 -15
- data/lib/super_diff/operation_tree_builders/custom_object.rb +8 -6
- data/lib/super_diff/operation_tree_builders/default_object.rb +29 -21
- data/lib/super_diff/operation_tree_builders/hash.rb +23 -24
- data/lib/super_diff/operation_tree_builders/main.rb +4 -11
- data/lib/super_diff/operation_tree_builders/multiline_string.rb +3 -3
- data/lib/super_diff/operation_tree_builders/time_like.rb +1 -11
- data/lib/super_diff/operation_tree_builders.rb +1 -1
- data/lib/super_diff/operation_tree_flatteners/base.rb +1 -5
- data/lib/super_diff/operation_tree_flatteners/collection.rb +13 -16
- data/lib/super_diff/operation_tree_flatteners/default_object.rb +1 -2
- data/lib/super_diff/operation_tree_flatteners/hash.rb +2 -10
- data/lib/super_diff/operation_tree_flatteners/multiline_string.rb +2 -1
- data/lib/super_diff/operation_tree_flatteners.rb +3 -3
- data/lib/super_diff/operation_trees/base.rb +3 -5
- data/lib/super_diff/operation_trees/default_object.rb +1 -3
- data/lib/super_diff/operations/binary_operation.rb +2 -2
- data/lib/super_diff/operations/unary_operation.rb +1 -1
- data/lib/super_diff/rails.rb +2 -1
- data/lib/super_diff/recursion_guard.rb +5 -4
- data/lib/super_diff/rspec/augmented_matcher.rb +4 -5
- data/lib/super_diff/rspec/differ.rb +6 -13
- data/lib/super_diff/rspec/differs/collection_containing_exactly.rb +3 -2
- data/lib/super_diff/rspec/differs/collection_including.rb +1 -1
- data/lib/super_diff/rspec/differs/hash_including.rb +1 -1
- data/lib/super_diff/rspec/differs.rb +3 -3
- data/lib/super_diff/rspec/matcher_text_builders/base.rb +13 -15
- data/lib/super_diff/rspec/matcher_text_builders/be_predicate.rb +5 -7
- data/lib/super_diff/rspec/matcher_text_builders/have_predicate.rb +3 -5
- data/lib/super_diff/rspec/matcher_text_builders/raise_error.rb +1 -5
- data/lib/super_diff/rspec/matcher_text_builders/respond_to.rb +2 -6
- data/lib/super_diff/rspec/matcher_text_builders.rb +5 -8
- data/lib/super_diff/rspec/matcher_text_template.rb +13 -16
- data/lib/super_diff/rspec/monkey_patches.rb +122 -116
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders/collection_including.rb +8 -6
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders/double.rb +11 -16
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders/hash_including.rb +2 -1
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders/instance_of.rb +8 -6
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders/kind_of.rb +8 -6
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders.rb +9 -9
- data/lib/super_diff/rspec/object_inspection.rb +1 -1
- data/lib/super_diff/rspec/operation_tree_builders/collection_containing_exactly.rb +11 -10
- data/lib/super_diff/rspec/operation_tree_builders/collection_including.rb +7 -6
- data/lib/super_diff/rspec/operation_tree_builders/hash_including.rb +11 -10
- data/lib/super_diff/rspec/operation_tree_builders/object_having_attributes.rb +22 -17
- data/lib/super_diff/rspec/operation_tree_builders.rb +4 -4
- data/lib/super_diff/rspec.rb +11 -13
- data/lib/super_diff/tiered_lines_elider.rb +87 -115
- data/lib/super_diff/tiered_lines_formatter.rb +5 -9
- data/lib/super_diff/version.rb +1 -1
- data/lib/super_diff.rb +5 -9
- data/spec/examples.txt +493 -407
- data/spec/integration/rails/active_record_spec.rb +3 -1
- data/spec/integration/rails/engines_spec.rb +20 -0
- data/spec/integration/rails/hash_with_indifferent_access_spec.rb +3 -1
- data/spec/integration/rspec/be_falsey_matcher_spec.rb +40 -35
- data/spec/integration/rspec/be_matcher_spec.rb +360 -320
- data/spec/integration/rspec/be_nil_matcher_spec.rb +38 -34
- data/spec/integration/rspec/be_predicate_matcher_spec.rb +376 -359
- data/spec/integration/rspec/be_truthy_matcher_spec.rb +38 -33
- data/spec/integration/rspec/contain_exactly_matcher_spec.rb +242 -239
- data/spec/integration/rspec/eq_matcher_spec.rb +595 -557
- data/spec/integration/rspec/have_attributes_matcher_spec.rb +294 -286
- data/spec/integration/rspec/have_predicate_matcher_spec.rb +291 -297
- data/spec/integration/rspec/include_matcher_spec.rb +317 -215
- data/spec/integration/rspec/match_array_matcher_spec.rb +276 -273
- data/spec/integration/rspec/match_matcher_spec.rb +847 -834
- data/spec/integration/rspec/raise_error_matcher_spec.rb +468 -453
- data/spec/integration/rspec/respond_to_matcher_spec.rb +702 -697
- data/spec/integration/rspec/third_party_matcher_spec.rb +142 -138
- data/spec/integration/rspec/unhandled_errors_spec.rb +88 -84
- data/spec/spec_helper.rb +17 -20
- data/spec/support/command_runner.rb +34 -57
- data/spec/support/integration/helpers.rb +35 -28
- data/spec/support/integration/matchers/produce_output_when_run_matcher.rb +28 -23
- data/spec/support/integration/test_programs/base.rb +12 -17
- data/spec/support/integration/test_programs/plain.rb +6 -0
- data/spec/support/integration/test_programs/rspec_active_record.rb +4 -1
- data/spec/support/integration/test_programs/rspec_active_support.rb +4 -1
- data/spec/support/integration/test_programs/rspec_rails.rb +4 -1
- data/spec/support/integration/test_programs/rspec_rails_engine.rb +30 -0
- data/spec/support/models/active_record/person.rb +6 -4
- data/spec/support/models/active_record/shipping_address.rb +9 -10
- data/spec/support/models/customer.rb +2 -4
- data/spec/support/models/player.rb +3 -6
- data/spec/support/models/shipping_address.rb +4 -13
- data/spec/support/shared_examples/active_record.rb +232 -214
- data/spec/support/shared_examples/active_support.rb +53 -51
- data/spec/support/shared_examples/elided_diffs.rb +405 -381
- data/spec/support/shared_examples/hash_with_indifferent_access.rb +424 -388
- data/spec/support/shared_examples/key.rb +123 -0
- data/spec/support/unit/helpers.rb +1 -3
- data/spec/support/unit/matchers/match_output.rb +12 -13
- data/spec/unit/active_record/object_inspection_spec.rb +222 -206
- data/spec/unit/equality_matchers/main_spec.rb +1049 -984
- data/spec/unit/helpers_spec.rb +27 -20
- data/spec/unit/operation_tree_flatteners/array_spec.rb +557 -524
- data/spec/unit/operation_tree_flatteners/custom_object_spec.rb +619 -601
- data/spec/unit/operation_tree_flatteners/default_object_spec.rb +619 -621
- data/spec/unit/operation_tree_flatteners/hash_spec.rb +595 -556
- data/spec/unit/operation_tree_flatteners/multiline_string_spec.rb +102 -92
- data/spec/unit/rspec/matchers/be_compared_to_spec.rb +3 -3
- data/spec/unit/rspec/matchers/be_predicate_spec.rb +3 -3
- data/spec/unit/rspec/matchers/contain_exactly_spec.rb +1 -1
- data/spec/unit/rspec/matchers/have_attributes_spec.rb +1 -1
- data/spec/unit/rspec/matchers/have_predicate_spec.rb +2 -2
- data/spec/unit/rspec/matchers/include_spec.rb +2 -2
- data/spec/unit/rspec/matchers/match_array_spec.rb +2 -2
- data/spec/unit/rspec/matchers/raise_error_spec.rb +5 -5
- data/spec/unit/rspec/matchers/respond_to_spec.rb +23 -16
- data/spec/unit/rspec/object_inspection_spec.rb +349 -324
- data/spec/unit/super_diff_spec.rb +1542 -1449
- data/spec/unit/tiered_lines_elider_spec.rb +3508 -3536
- data/spec/unit/tiered_lines_formatter_spec.rb +54 -116
- data/super_diff.gemspec +13 -12
- metadata +70 -68
@@ -3,125 +3,135 @@ require "spec_helper"
|
|
3
3
|
RSpec.describe SuperDiff::OperationTreeFlatteners::Hash do
|
4
4
|
context "given an empty tree" do
|
5
5
|
it "returns a set of lines which are simply the open token and close token" do
|
6
|
-
expect(described_class.call([])).to match(
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
6
|
+
expect(described_class.call([])).to match(
|
7
|
+
[
|
8
|
+
an_object_having_attributes(
|
9
|
+
type: :noop,
|
10
|
+
indentation_level: 0,
|
11
|
+
prefix: "",
|
12
|
+
value: "{",
|
13
|
+
collection_bookend: :open,
|
14
|
+
complete_bookend: :open
|
15
|
+
),
|
16
|
+
an_object_having_attributes(
|
17
|
+
type: :noop,
|
18
|
+
indentation_level: 0,
|
19
|
+
prefix: "",
|
20
|
+
value: "}",
|
21
|
+
collection_bookend: :close,
|
22
|
+
complete_bookend: :close
|
23
|
+
)
|
24
|
+
]
|
25
|
+
)
|
24
26
|
end
|
25
27
|
end
|
26
28
|
|
27
29
|
context "given a tree of only noops" do
|
28
30
|
it "returns a series of lines from inspecting each value, creating multiple lines upon encountering inner data structures" do
|
29
31
|
collection = Array.new(3) { :some_value }
|
30
|
-
operation_tree =
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
32
|
+
operation_tree =
|
33
|
+
SuperDiff::OperationTrees::Hash.new(
|
34
|
+
[
|
35
|
+
double(
|
36
|
+
:operation,
|
37
|
+
name: :noop,
|
38
|
+
collection: collection,
|
39
|
+
key: :foo,
|
40
|
+
value: "bar",
|
41
|
+
index: 0
|
42
|
+
),
|
43
|
+
double(
|
44
|
+
:operation,
|
45
|
+
name: :noop,
|
46
|
+
collection: collection,
|
47
|
+
key: :baz,
|
48
|
+
value: {
|
49
|
+
one: "fish",
|
50
|
+
two: "fish"
|
51
|
+
},
|
52
|
+
index: 1
|
53
|
+
),
|
54
|
+
double(
|
55
|
+
:operation,
|
56
|
+
name: :noop,
|
57
|
+
collection: collection,
|
58
|
+
key: :qux,
|
59
|
+
value: "blargh",
|
60
|
+
index: 2
|
61
|
+
)
|
62
|
+
]
|
63
|
+
)
|
56
64
|
|
57
65
|
flattened_operation_tree = described_class.call(operation_tree)
|
58
66
|
|
59
|
-
expect(flattened_operation_tree).to match(
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
67
|
+
expect(flattened_operation_tree).to match(
|
68
|
+
[
|
69
|
+
an_object_having_attributes(
|
70
|
+
type: :noop,
|
71
|
+
indentation_level: 0,
|
72
|
+
prefix: "",
|
73
|
+
value: "{",
|
74
|
+
collection_bookend: :open,
|
75
|
+
complete_bookend: :open,
|
76
|
+
add_comma: false
|
77
|
+
),
|
78
|
+
an_object_having_attributes(
|
79
|
+
type: :noop,
|
80
|
+
indentation_level: 1,
|
81
|
+
prefix: "foo: ",
|
82
|
+
value: %("bar"),
|
83
|
+
add_comma: true
|
84
|
+
),
|
85
|
+
an_object_having_attributes(
|
86
|
+
type: :noop,
|
87
|
+
indentation_level: 1,
|
88
|
+
prefix: "baz: ",
|
89
|
+
value: "{",
|
90
|
+
collection_bookend: :open,
|
91
|
+
complete_bookend: nil,
|
92
|
+
add_comma: false
|
93
|
+
),
|
94
|
+
an_object_having_attributes(
|
95
|
+
type: :noop,
|
96
|
+
indentation_level: 2,
|
97
|
+
prefix: "one: ",
|
98
|
+
value: %("fish"),
|
99
|
+
add_comma: true
|
100
|
+
),
|
101
|
+
an_object_having_attributes(
|
102
|
+
type: :noop,
|
103
|
+
indentation_level: 2,
|
104
|
+
prefix: "two: ",
|
105
|
+
value: %("fish"),
|
106
|
+
add_comma: false
|
107
|
+
),
|
108
|
+
an_object_having_attributes(
|
109
|
+
type: :noop,
|
110
|
+
indentation_level: 1,
|
111
|
+
prefix: "",
|
112
|
+
value: "}",
|
113
|
+
collection_bookend: :close,
|
114
|
+
complete_bookend: nil,
|
115
|
+
add_comma: true
|
116
|
+
),
|
117
|
+
an_object_having_attributes(
|
118
|
+
type: :noop,
|
119
|
+
indentation_level: 1,
|
120
|
+
prefix: "qux: ",
|
121
|
+
value: %("blargh"),
|
122
|
+
add_comma: false
|
123
|
+
),
|
124
|
+
an_object_having_attributes(
|
125
|
+
type: :noop,
|
126
|
+
indentation_level: 0,
|
127
|
+
prefix: "",
|
128
|
+
value: "}",
|
129
|
+
collection_bookend: :close,
|
130
|
+
complete_bookend: :close,
|
131
|
+
add_comma: false
|
132
|
+
)
|
133
|
+
]
|
134
|
+
)
|
125
135
|
end
|
126
136
|
end
|
127
137
|
|
@@ -129,131 +139,139 @@ RSpec.describe SuperDiff::OperationTreeFlatteners::Hash do
|
|
129
139
|
it "returns a series of lines from inspecting each value, creating multiple lines upon encountering inner data structures" do
|
130
140
|
expected = Array.new(3) { :some_value }
|
131
141
|
actual = Array.new(4) { :some_value }
|
132
|
-
operation_tree =
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
142
|
+
operation_tree =
|
143
|
+
SuperDiff::OperationTrees::Hash.new(
|
144
|
+
[
|
145
|
+
double(
|
146
|
+
:operation,
|
147
|
+
name: :delete,
|
148
|
+
collection: expected,
|
149
|
+
key: :foo,
|
150
|
+
value: "bar",
|
151
|
+
index: 0
|
152
|
+
),
|
153
|
+
double(
|
154
|
+
:operation,
|
155
|
+
name: :insert,
|
156
|
+
collection: actual,
|
157
|
+
key: :foo,
|
158
|
+
value: "czar",
|
159
|
+
index: 0
|
160
|
+
),
|
161
|
+
double(
|
162
|
+
:operation,
|
163
|
+
name: :noop,
|
164
|
+
collection: actual,
|
165
|
+
key: :baz,
|
166
|
+
value: {
|
167
|
+
:one => "fish",
|
168
|
+
"two" => "fish"
|
169
|
+
},
|
170
|
+
index: 1
|
171
|
+
),
|
172
|
+
double(
|
173
|
+
:operation,
|
174
|
+
name: :noop,
|
175
|
+
collection: actual,
|
176
|
+
key: :qux,
|
177
|
+
value: "blargh",
|
178
|
+
index: 2
|
179
|
+
),
|
180
|
+
double(
|
181
|
+
:operation,
|
182
|
+
name: :insert,
|
183
|
+
collection: actual,
|
184
|
+
key: :sing,
|
185
|
+
value: "song",
|
186
|
+
index: 3
|
187
|
+
)
|
188
|
+
]
|
189
|
+
)
|
174
190
|
|
175
191
|
flattened_operation_tree = described_class.call(operation_tree)
|
176
192
|
|
177
|
-
expect(flattened_operation_tree).to match(
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
193
|
+
expect(flattened_operation_tree).to match(
|
194
|
+
[
|
195
|
+
an_object_having_attributes(
|
196
|
+
type: :noop,
|
197
|
+
indentation_level: 0,
|
198
|
+
prefix: "",
|
199
|
+
value: "{",
|
200
|
+
collection_bookend: :open,
|
201
|
+
complete_bookend: :open,
|
202
|
+
add_comma: false
|
203
|
+
),
|
204
|
+
an_object_having_attributes(
|
205
|
+
type: :delete,
|
206
|
+
indentation_level: 1,
|
207
|
+
prefix: "foo: ",
|
208
|
+
value: %("bar"),
|
209
|
+
add_comma: true
|
210
|
+
),
|
211
|
+
an_object_having_attributes(
|
212
|
+
type: :insert,
|
213
|
+
indentation_level: 1,
|
214
|
+
prefix: "foo: ",
|
215
|
+
value: %("czar"),
|
216
|
+
add_comma: true
|
217
|
+
),
|
218
|
+
an_object_having_attributes(
|
219
|
+
type: :noop,
|
220
|
+
indentation_level: 1,
|
221
|
+
prefix: "baz: ",
|
222
|
+
value: "{",
|
223
|
+
collection_bookend: :open,
|
224
|
+
complete_bookend: nil,
|
225
|
+
add_comma: false
|
226
|
+
),
|
227
|
+
an_object_having_attributes(
|
228
|
+
type: :noop,
|
229
|
+
indentation_level: 2,
|
230
|
+
prefix: ":one => ",
|
231
|
+
value: %("fish"),
|
232
|
+
add_comma: true
|
233
|
+
),
|
234
|
+
an_object_having_attributes(
|
235
|
+
type: :noop,
|
236
|
+
indentation_level: 2,
|
237
|
+
prefix: %("two" => ),
|
238
|
+
value: %("fish"),
|
239
|
+
add_comma: false
|
240
|
+
),
|
241
|
+
an_object_having_attributes(
|
242
|
+
type: :noop,
|
243
|
+
indentation_level: 1,
|
244
|
+
prefix: "",
|
245
|
+
value: "}",
|
246
|
+
collection_bookend: :close,
|
247
|
+
complete_bookend: nil,
|
248
|
+
add_comma: true
|
249
|
+
),
|
250
|
+
an_object_having_attributes(
|
251
|
+
type: :noop,
|
252
|
+
indentation_level: 1,
|
253
|
+
prefix: "qux: ",
|
254
|
+
value: %("blargh"),
|
255
|
+
add_comma: true
|
256
|
+
),
|
257
|
+
an_object_having_attributes(
|
258
|
+
type: :insert,
|
259
|
+
indentation_level: 1,
|
260
|
+
prefix: "sing: ",
|
261
|
+
value: %("song"),
|
262
|
+
add_comma: false
|
263
|
+
),
|
264
|
+
an_object_having_attributes(
|
265
|
+
type: :noop,
|
266
|
+
indentation_level: 0,
|
267
|
+
prefix: "",
|
268
|
+
value: "}",
|
269
|
+
collection_bookend: :close,
|
270
|
+
complete_bookend: :close,
|
271
|
+
add_comma: false
|
272
|
+
)
|
273
|
+
]
|
274
|
+
)
|
257
275
|
end
|
258
276
|
end
|
259
277
|
|
@@ -261,231 +279,245 @@ RSpec.describe SuperDiff::OperationTreeFlatteners::Hash do
|
|
261
279
|
it "splits change operations into multiple lines" do
|
262
280
|
collection = Array.new(3) { :some_value }
|
263
281
|
subcollection = Array.new(2) { :some_value }
|
264
|
-
operation_tree =
|
265
|
-
|
266
|
-
|
267
|
-
name: :noop,
|
268
|
-
collection: collection,
|
269
|
-
key: :foo,
|
270
|
-
value: "bar",
|
271
|
-
index: 0,
|
272
|
-
),
|
273
|
-
double(
|
274
|
-
:operation,
|
275
|
-
name: :change,
|
276
|
-
left_collection: collection,
|
277
|
-
left_key: :baz,
|
278
|
-
left_index: 1,
|
279
|
-
right_collection: collection,
|
280
|
-
right_key: :baz,
|
281
|
-
right_index: 1,
|
282
|
-
children: SuperDiff::OperationTrees::Hash.new([
|
282
|
+
operation_tree =
|
283
|
+
SuperDiff::OperationTrees::Hash.new(
|
284
|
+
[
|
283
285
|
double(
|
284
286
|
:operation,
|
285
287
|
name: :noop,
|
286
|
-
collection:
|
287
|
-
key: :
|
288
|
-
value: "
|
289
|
-
index: 0
|
288
|
+
collection: collection,
|
289
|
+
key: :foo,
|
290
|
+
value: "bar",
|
291
|
+
index: 0
|
290
292
|
),
|
291
293
|
double(
|
292
294
|
:operation,
|
293
|
-
name: :
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
295
|
+
name: :change,
|
296
|
+
left_collection: collection,
|
297
|
+
left_key: :baz,
|
298
|
+
left_index: 1,
|
299
|
+
right_collection: collection,
|
300
|
+
right_key: :baz,
|
301
|
+
right_index: 1,
|
302
|
+
children:
|
303
|
+
SuperDiff::OperationTrees::Hash.new(
|
304
|
+
[
|
305
|
+
double(
|
306
|
+
:operation,
|
307
|
+
name: :noop,
|
308
|
+
collection: subcollection,
|
309
|
+
key: :one,
|
310
|
+
value: "fish",
|
311
|
+
index: 0
|
312
|
+
),
|
313
|
+
double(
|
314
|
+
:operation,
|
315
|
+
name: :delete,
|
316
|
+
collection: subcollection,
|
317
|
+
key: :two,
|
318
|
+
value: "fish",
|
319
|
+
index: 1
|
320
|
+
),
|
321
|
+
double(
|
322
|
+
:operation,
|
323
|
+
name: :insert,
|
324
|
+
collection: subcollection,
|
325
|
+
key: :blue,
|
326
|
+
value: "fish",
|
327
|
+
index: 1
|
328
|
+
)
|
329
|
+
]
|
330
|
+
)
|
298
331
|
),
|
299
332
|
double(
|
300
333
|
:operation,
|
301
|
-
name: :
|
302
|
-
collection:
|
303
|
-
key: :
|
304
|
-
value: "
|
305
|
-
index:
|
306
|
-
)
|
307
|
-
]
|
308
|
-
)
|
309
|
-
double(
|
310
|
-
:operation,
|
311
|
-
name: :noop,
|
312
|
-
collection: collection,
|
313
|
-
key: :qux,
|
314
|
-
value: "blargh",
|
315
|
-
index: 2,
|
316
|
-
),
|
317
|
-
])
|
334
|
+
name: :noop,
|
335
|
+
collection: collection,
|
336
|
+
key: :qux,
|
337
|
+
value: "blargh",
|
338
|
+
index: 2
|
339
|
+
)
|
340
|
+
]
|
341
|
+
)
|
318
342
|
|
319
343
|
flattened_operation_tree = described_class.call(operation_tree)
|
320
344
|
|
321
|
-
expect(flattened_operation_tree).to match(
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
345
|
+
expect(flattened_operation_tree).to match(
|
346
|
+
[
|
347
|
+
an_object_having_attributes(
|
348
|
+
type: :noop,
|
349
|
+
indentation_level: 0,
|
350
|
+
prefix: "",
|
351
|
+
value: "{",
|
352
|
+
collection_bookend: :open,
|
353
|
+
complete_bookend: :open,
|
354
|
+
add_comma: false
|
355
|
+
),
|
356
|
+
an_object_having_attributes(
|
357
|
+
type: :noop,
|
358
|
+
indentation_level: 1,
|
359
|
+
prefix: "foo: ",
|
360
|
+
value: %("bar"),
|
361
|
+
add_comma: true
|
362
|
+
),
|
363
|
+
an_object_having_attributes(
|
364
|
+
type: :noop,
|
365
|
+
indentation_level: 1,
|
366
|
+
prefix: "baz: ",
|
367
|
+
value: "{",
|
368
|
+
collection_bookend: :open,
|
369
|
+
complete_bookend: nil,
|
370
|
+
add_comma: false
|
371
|
+
),
|
372
|
+
an_object_having_attributes(
|
373
|
+
type: :noop,
|
374
|
+
indentation_level: 2,
|
375
|
+
prefix: "one: ",
|
376
|
+
value: %("fish"),
|
377
|
+
add_comma: true
|
378
|
+
),
|
379
|
+
an_object_having_attributes(
|
380
|
+
type: :delete,
|
381
|
+
indentation_level: 2,
|
382
|
+
prefix: "two: ",
|
383
|
+
value: %("fish"),
|
384
|
+
add_comma: false
|
385
|
+
),
|
386
|
+
an_object_having_attributes(
|
387
|
+
type: :insert,
|
388
|
+
indentation_level: 2,
|
389
|
+
prefix: "blue: ",
|
390
|
+
value: %("fish"),
|
391
|
+
add_comma: false
|
392
|
+
),
|
393
|
+
an_object_having_attributes(
|
394
|
+
type: :noop,
|
395
|
+
indentation_level: 1,
|
396
|
+
prefix: "",
|
397
|
+
value: "}",
|
398
|
+
collection_bookend: :close,
|
399
|
+
complete_bookend: nil,
|
400
|
+
add_comma: true
|
401
|
+
),
|
402
|
+
an_object_having_attributes(
|
403
|
+
type: :noop,
|
404
|
+
indentation_level: 1,
|
405
|
+
prefix: "qux: ",
|
406
|
+
value: %("blargh"),
|
407
|
+
add_comma: false
|
408
|
+
),
|
409
|
+
an_object_having_attributes(
|
410
|
+
type: :noop,
|
411
|
+
indentation_level: 0,
|
412
|
+
prefix: "",
|
413
|
+
value: "}",
|
414
|
+
collection_bookend: :close,
|
415
|
+
complete_bookend: :close,
|
416
|
+
add_comma: false
|
417
|
+
)
|
418
|
+
]
|
419
|
+
)
|
394
420
|
end
|
395
421
|
end
|
396
422
|
|
397
423
|
context "given a single-dimensional tree that contains a reference to itself" do
|
398
424
|
it "replaces the reference with a static placeholder" do
|
399
425
|
left_collection = Array.new(3) { :some_value }
|
400
|
-
right_collection =
|
401
|
-
|
402
|
-
|
426
|
+
right_collection =
|
427
|
+
Array
|
428
|
+
.new(2) { :some_value }
|
429
|
+
.tap { |collection| collection << right_collection }
|
403
430
|
|
404
|
-
operation_tree =
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
431
|
+
operation_tree =
|
432
|
+
SuperDiff::OperationTrees::Hash.new(
|
433
|
+
[
|
434
|
+
double(
|
435
|
+
:operation,
|
436
|
+
name: :noop,
|
437
|
+
collection: right_collection,
|
438
|
+
key: :foo,
|
439
|
+
value: "bar",
|
440
|
+
index: 0
|
441
|
+
),
|
442
|
+
double(
|
443
|
+
:operation,
|
444
|
+
name: :noop,
|
445
|
+
collection: right_collection,
|
446
|
+
key: :baz,
|
447
|
+
value: "qux",
|
448
|
+
index: 1
|
449
|
+
),
|
450
|
+
double(
|
451
|
+
:operation,
|
452
|
+
name: :delete,
|
453
|
+
collection: left_collection,
|
454
|
+
key: :blargh,
|
455
|
+
value: "zig",
|
456
|
+
index: 2
|
457
|
+
),
|
458
|
+
double(
|
459
|
+
:operation,
|
460
|
+
name: :insert,
|
461
|
+
collection: right_collection,
|
462
|
+
key: :blargh,
|
463
|
+
value: right_collection,
|
464
|
+
index: 2
|
465
|
+
)
|
466
|
+
]
|
467
|
+
)
|
438
468
|
|
439
469
|
flattened_operation_tree = described_class.call(operation_tree)
|
440
470
|
|
441
|
-
expect(flattened_operation_tree).to match(
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
471
|
+
expect(flattened_operation_tree).to match(
|
472
|
+
[
|
473
|
+
an_object_having_attributes(
|
474
|
+
type: :noop,
|
475
|
+
indentation_level: 0,
|
476
|
+
prefix: "",
|
477
|
+
value: "{",
|
478
|
+
collection_bookend: :open,
|
479
|
+
complete_bookend: :open,
|
480
|
+
add_comma: false
|
481
|
+
),
|
482
|
+
an_object_having_attributes(
|
483
|
+
type: :noop,
|
484
|
+
indentation_level: 1,
|
485
|
+
prefix: "foo: ",
|
486
|
+
value: %("bar"),
|
487
|
+
add_comma: true
|
488
|
+
),
|
489
|
+
an_object_having_attributes(
|
490
|
+
type: :noop,
|
491
|
+
indentation_level: 1,
|
492
|
+
prefix: "baz: ",
|
493
|
+
value: %("qux"),
|
494
|
+
add_comma: true
|
495
|
+
),
|
496
|
+
an_object_having_attributes(
|
497
|
+
type: :delete,
|
498
|
+
indentation_level: 1,
|
499
|
+
prefix: "blargh: ",
|
500
|
+
value: %("zig"),
|
501
|
+
add_comma: false
|
502
|
+
),
|
503
|
+
an_object_having_attributes(
|
504
|
+
type: :insert,
|
505
|
+
indentation_level: 1,
|
506
|
+
prefix: "blargh: ",
|
507
|
+
value: "∙∙∙",
|
508
|
+
add_comma: false
|
509
|
+
),
|
510
|
+
an_object_having_attributes(
|
511
|
+
type: :noop,
|
512
|
+
indentation_level: 0,
|
513
|
+
prefix: "",
|
514
|
+
value: "}",
|
515
|
+
collection_bookend: :close,
|
516
|
+
complete_bookend: :close,
|
517
|
+
add_comma: false
|
518
|
+
)
|
519
|
+
]
|
520
|
+
)
|
489
521
|
end
|
490
522
|
end
|
491
523
|
|
@@ -493,140 +525,147 @@ RSpec.describe SuperDiff::OperationTreeFlatteners::Hash do
|
|
493
525
|
it "replaces the reference with a static placeholder" do
|
494
526
|
collection = Array.new(3) { :some_value }
|
495
527
|
left_subcollection = Array.new(2) { :some_value }
|
496
|
-
right_subcollection =
|
497
|
-
coll << right_subcollection
|
498
|
-
end
|
528
|
+
right_subcollection =
|
529
|
+
Array.new(1) { :some_value }.tap { |coll| coll << right_subcollection }
|
499
530
|
|
500
|
-
operation_tree =
|
501
|
-
|
502
|
-
|
503
|
-
name: :noop,
|
504
|
-
collection: collection,
|
505
|
-
key: :foo,
|
506
|
-
value: "bar",
|
507
|
-
index: 0,
|
508
|
-
),
|
509
|
-
double(
|
510
|
-
:operation,
|
511
|
-
name: :change,
|
512
|
-
left_collection: collection,
|
513
|
-
left_key: :baz,
|
514
|
-
left_index: 1,
|
515
|
-
right_collection: collection,
|
516
|
-
right_key: :baz,
|
517
|
-
right_index: 1,
|
518
|
-
children: SuperDiff::OperationTrees::Hash.new([
|
531
|
+
operation_tree =
|
532
|
+
SuperDiff::OperationTrees::Hash.new(
|
533
|
+
[
|
519
534
|
double(
|
520
535
|
:operation,
|
521
536
|
name: :noop,
|
522
|
-
collection:
|
523
|
-
key: :
|
524
|
-
value: "
|
525
|
-
index: 0
|
537
|
+
collection: collection,
|
538
|
+
key: :foo,
|
539
|
+
value: "bar",
|
540
|
+
index: 0
|
526
541
|
),
|
527
542
|
double(
|
528
543
|
:operation,
|
529
|
-
name: :
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
544
|
+
name: :change,
|
545
|
+
left_collection: collection,
|
546
|
+
left_key: :baz,
|
547
|
+
left_index: 1,
|
548
|
+
right_collection: collection,
|
549
|
+
right_key: :baz,
|
550
|
+
right_index: 1,
|
551
|
+
children:
|
552
|
+
SuperDiff::OperationTrees::Hash.new(
|
553
|
+
[
|
554
|
+
double(
|
555
|
+
:operation,
|
556
|
+
name: :noop,
|
557
|
+
collection: right_subcollection,
|
558
|
+
key: :one,
|
559
|
+
value: "fish",
|
560
|
+
index: 0
|
561
|
+
),
|
562
|
+
double(
|
563
|
+
:operation,
|
564
|
+
name: :delete,
|
565
|
+
collection: left_subcollection,
|
566
|
+
key: :two,
|
567
|
+
value: "fish",
|
568
|
+
index: 1
|
569
|
+
),
|
570
|
+
double(
|
571
|
+
:operation,
|
572
|
+
name: :insert,
|
573
|
+
collection: right_subcollection,
|
574
|
+
key: :two,
|
575
|
+
value: right_subcollection,
|
576
|
+
index: 1
|
577
|
+
)
|
578
|
+
]
|
579
|
+
)
|
534
580
|
),
|
535
581
|
double(
|
536
582
|
:operation,
|
537
|
-
name: :
|
538
|
-
collection:
|
539
|
-
key: :
|
540
|
-
value:
|
541
|
-
index:
|
542
|
-
)
|
543
|
-
]
|
544
|
-
)
|
545
|
-
double(
|
546
|
-
:operation,
|
547
|
-
name: :noop,
|
548
|
-
collection: collection,
|
549
|
-
key: :qux,
|
550
|
-
value: "blargh",
|
551
|
-
index: 2,
|
552
|
-
),
|
553
|
-
])
|
583
|
+
name: :noop,
|
584
|
+
collection: collection,
|
585
|
+
key: :qux,
|
586
|
+
value: "blargh",
|
587
|
+
index: 2
|
588
|
+
)
|
589
|
+
]
|
590
|
+
)
|
554
591
|
|
555
592
|
flattened_operation_tree = described_class.call(operation_tree)
|
556
593
|
|
557
|
-
expect(flattened_operation_tree).to match(
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
594
|
+
expect(flattened_operation_tree).to match(
|
595
|
+
[
|
596
|
+
an_object_having_attributes(
|
597
|
+
type: :noop,
|
598
|
+
indentation_level: 0,
|
599
|
+
prefix: "",
|
600
|
+
value: "{",
|
601
|
+
collection_bookend: :open,
|
602
|
+
complete_bookend: :open,
|
603
|
+
add_comma: false
|
604
|
+
),
|
605
|
+
an_object_having_attributes(
|
606
|
+
type: :noop,
|
607
|
+
indentation_level: 1,
|
608
|
+
prefix: "foo: ",
|
609
|
+
value: %("bar"),
|
610
|
+
add_comma: true
|
611
|
+
),
|
612
|
+
an_object_having_attributes(
|
613
|
+
type: :noop,
|
614
|
+
indentation_level: 1,
|
615
|
+
prefix: "baz: ",
|
616
|
+
value: "{",
|
617
|
+
collection_bookend: :open,
|
618
|
+
complete_bookend: nil,
|
619
|
+
add_comma: false
|
620
|
+
),
|
621
|
+
an_object_having_attributes(
|
622
|
+
type: :noop,
|
623
|
+
indentation_level: 2,
|
624
|
+
prefix: "one: ",
|
625
|
+
value: %("fish"),
|
626
|
+
add_comma: true
|
627
|
+
),
|
628
|
+
an_object_having_attributes(
|
629
|
+
type: :delete,
|
630
|
+
indentation_level: 2,
|
631
|
+
prefix: "two: ",
|
632
|
+
value: %("fish"),
|
633
|
+
add_comma: false
|
634
|
+
),
|
635
|
+
an_object_having_attributes(
|
636
|
+
type: :insert,
|
637
|
+
indentation_level: 2,
|
638
|
+
prefix: "two: ",
|
639
|
+
value: "∙∙∙",
|
640
|
+
add_comma: false
|
641
|
+
),
|
642
|
+
an_object_having_attributes(
|
643
|
+
type: :noop,
|
644
|
+
indentation_level: 1,
|
645
|
+
prefix: "",
|
646
|
+
value: "}",
|
647
|
+
collection_bookend: :close,
|
648
|
+
complete_bookend: nil,
|
649
|
+
add_comma: true
|
650
|
+
),
|
651
|
+
an_object_having_attributes(
|
652
|
+
type: :noop,
|
653
|
+
indentation_level: 1,
|
654
|
+
prefix: "qux: ",
|
655
|
+
value: %("blargh"),
|
656
|
+
add_comma: false
|
657
|
+
),
|
658
|
+
an_object_having_attributes(
|
659
|
+
type: :noop,
|
660
|
+
indentation_level: 0,
|
661
|
+
prefix: "",
|
662
|
+
value: "}",
|
663
|
+
collection_bookend: :close,
|
664
|
+
complete_bookend: :close,
|
665
|
+
add_comma: false
|
666
|
+
)
|
667
|
+
]
|
668
|
+
)
|
630
669
|
end
|
631
670
|
end
|
632
671
|
end
|