@@ -120,7 +120,7 @@ def inspect_identification; "SIMPLE_TEST_OBJECT" end
120
120
subject { klazz . new ( inspector_with_wrapped_object ) }
121
121
122
122
it "returns the expected String" do
123
- value ( subject . call ) . must_equal (
123
+ _ ( subject . call ) . must_equal (
124
124
"<WRAPPER> " \
125
125
"#{ ObjectInspector . configuration . presented_object_separator } " \
126
126
"<SIMPLE_TEST_OBJECT>" )
@@ -131,7 +131,7 @@ def inspect_identification; "SIMPLE_TEST_OBJECT" end
131
131
subject { klazz . new ( inspector_with_flags_and_issues_and_info_and_name ) }
132
132
133
133
it "returns the expected String" do
134
- value ( subject . call ) . must_equal (
134
+ _ ( subject . call ) . must_equal (
135
135
"<IDENTIFICATION(FLAG1 | FLAG2) !!ISSUE1 | ISSUE2!! INFO :: NAME>" )
136
136
end
137
137
end
@@ -140,7 +140,7 @@ def inspect_identification; "SIMPLE_TEST_OBJECT" end
140
140
subject { klazz . new ( inspector_with_flags_and_issues_and_info ) }
141
141
142
142
it "returns the expected String" do
143
- value ( subject . call ) . must_equal (
143
+ _ ( subject . call ) . must_equal (
144
144
"<IDENTIFICATION(FLAG1 | FLAG2) !!ISSUE1 | ISSUE2!! INFO>" )
145
145
end
146
146
end
@@ -149,7 +149,7 @@ def inspect_identification; "SIMPLE_TEST_OBJECT" end
149
149
subject { klazz . new ( inspector_with_flags_and_issues_and_name ) }
150
150
151
151
it "returns the expected String" do
152
- value ( subject . call ) . must_equal (
152
+ _ ( subject . call ) . must_equal (
153
153
"<IDENTIFICATION(FLAG1 | FLAG2) !!ISSUE1 | ISSUE2!! :: NAME>" )
154
154
end
155
155
end
@@ -158,7 +158,7 @@ def inspect_identification; "SIMPLE_TEST_OBJECT" end
158
158
subject { klazz . new ( inspector_with_flags_and_info_and_name ) }
159
159
160
160
it "returns the expected String" do
161
- value ( subject . call ) . must_equal (
161
+ _ ( subject . call ) . must_equal (
162
162
"<IDENTIFICATION(FLAG1 | FLAG2) INFO :: NAME>" )
163
163
end
164
164
end
@@ -167,7 +167,7 @@ def inspect_identification; "SIMPLE_TEST_OBJECT" end
167
167
subject { klazz . new ( inspector_with_issues_and_info_and_name ) }
168
168
169
169
it "returns the expected String" do
170
- value ( subject . call ) . must_equal (
170
+ _ ( subject . call ) . must_equal (
171
171
"<IDENTIFICATION !!ISSUE1 | ISSUE2!! INFO :: NAME>" )
172
172
end
173
173
end
@@ -176,7 +176,7 @@ def inspect_identification; "SIMPLE_TEST_OBJECT" end
176
176
subject { klazz . new ( inspector_with_flags_and_issues ) }
177
177
178
178
it "returns the expected String" do
179
- value ( subject . call ) . must_equal (
179
+ _ ( subject . call ) . must_equal (
180
180
"<IDENTIFICATION(FLAG1 | FLAG2) !!ISSUE1 | ISSUE2!!>" )
181
181
end
182
182
end
@@ -185,7 +185,7 @@ def inspect_identification; "SIMPLE_TEST_OBJECT" end
185
185
subject { klazz . new ( inspector_with_flags_and_info ) }
186
186
187
187
it "returns the expected String" do
188
- value ( subject . call ) . must_equal (
188
+ _ ( subject . call ) . must_equal (
189
189
"<IDENTIFICATION(FLAG1 | FLAG2) INFO>" )
190
190
end
191
191
end
@@ -194,7 +194,7 @@ def inspect_identification; "SIMPLE_TEST_OBJECT" end
194
194
subject { klazz . new ( inspector_with_flags_and_name ) }
195
195
196
196
it "returns the expected String" do
197
- value ( subject . call ) . must_equal (
197
+ _ ( subject . call ) . must_equal (
198
198
"<IDENTIFICATION(FLAG1 | FLAG2) :: NAME>" )
199
199
end
200
200
end
@@ -203,15 +203,15 @@ def inspect_identification; "SIMPLE_TEST_OBJECT" end
203
203
subject { klazz . new ( inspector_with_info_and_name ) }
204
204
205
205
it "returns the expected String" do
206
- value ( subject . call ) . must_equal ( "<IDENTIFICATION INFO :: NAME>" )
206
+ _ ( subject . call ) . must_equal ( "<IDENTIFICATION INFO :: NAME>" )
207
207
end
208
208
end
209
209
210
210
context "GIVEN an Inspector with #issues and #info" do
211
211
subject { klazz . new ( inspector_with_issues_and_info ) }
212
212
213
213
it "returns the expected String" do
214
- value ( subject . call ) . must_equal (
214
+ _ ( subject . call ) . must_equal (
215
215
"<IDENTIFICATION !!ISSUE1 | ISSUE2!! INFO>" )
216
216
end
217
217
end
@@ -220,7 +220,7 @@ def inspect_identification; "SIMPLE_TEST_OBJECT" end
220
220
subject { klazz . new ( inspector_with_issues_and_name ) }
221
221
222
222
it "returns the expected String" do
223
- value ( subject . call ) . must_equal (
223
+ _ ( subject . call ) . must_equal (
224
224
"<IDENTIFICATION !!ISSUE1 | ISSUE2!! :: NAME>" )
225
225
end
226
226
end
@@ -229,23 +229,23 @@ def inspect_identification; "SIMPLE_TEST_OBJECT" end
229
229
subject { klazz . new ( inspector_with_name ) }
230
230
231
231
it "returns the expected String" do
232
- value ( subject . call ) . must_equal ( "<IDENTIFICATION :: NAME>" )
232
+ _ ( subject . call ) . must_equal ( "<IDENTIFICATION :: NAME>" )
233
233
end
234
234
end
235
235
236
236
context "GIVEN an Inspector with #flags" do
237
237
subject { klazz . new ( inspector_with_flags ) }
238
238
239
239
it "returns the expected String" do
240
- value ( subject . call ) . must_equal ( "<IDENTIFICATION(FLAG1 | FLAG2)>" )
240
+ _ ( subject . call ) . must_equal ( "<IDENTIFICATION(FLAG1 | FLAG2)>" )
241
241
end
242
242
end
243
243
244
244
context "GIVEN an Inspector with #issues" do
245
245
subject { klazz . new ( inspector_with_issues ) }
246
246
247
247
it "returns the expected String" do
248
- value ( subject . call ) . must_equal (
248
+ _ ( subject . call ) . must_equal (
249
249
"<IDENTIFICATION !!ISSUE1 | ISSUE2!!>" )
250
250
end
251
251
end
@@ -254,15 +254,15 @@ def inspect_identification; "SIMPLE_TEST_OBJECT" end
254
254
subject { klazz . new ( inspector_with_info ) }
255
255
256
256
it "returns the expected String" do
257
- value ( subject . call ) . must_equal ( "<IDENTIFICATION INFO>" )
257
+ _ ( subject . call ) . must_equal ( "<IDENTIFICATION INFO>" )
258
258
end
259
259
end
260
260
261
261
context "GIVEN an Inspector with #base" do
262
262
subject { klazz . new ( inspector_with_base ) }
263
263
264
264
it "returns the expected String" do
265
- value ( subject . call ) . must_equal ( "<IDENTIFICATION>" )
265
+ _ ( subject . call ) . must_equal ( "<IDENTIFICATION>" )
266
266
end
267
267
end
268
268
end
0 commit comments