super_diff 0.5.3 → 0.6.0
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/README.md +46 -19
- data/lib/super_diff.rb +1 -7
- data/lib/super_diff/colorized_document_extensions.rb +4 -4
- data/lib/super_diff/configuration.rb +32 -22
- data/lib/super_diff/csi.rb +2 -1
- data/lib/super_diff/diff_formatters/collection.rb +1 -1
- data/lib/super_diff/diff_formatters/multiline_string.rb +4 -4
- data/lib/super_diff/equality_matchers/array.rb +2 -2
- data/lib/super_diff/equality_matchers/default.rb +2 -2
- data/lib/super_diff/equality_matchers/hash.rb +2 -2
- data/lib/super_diff/equality_matchers/multiline_string.rb +2 -2
- data/lib/super_diff/equality_matchers/primitive.rb +2 -2
- data/lib/super_diff/equality_matchers/singleline_string.rb +2 -2
- data/lib/super_diff/gem_version.rb +45 -0
- data/lib/super_diff/rspec.rb +4 -0
- data/lib/super_diff/rspec/matcher_text_builders/base.rb +7 -7
- data/lib/super_diff/rspec/matcher_text_builders/be_predicate.rb +6 -6
- data/lib/super_diff/rspec/matcher_text_builders/contain_exactly.rb +1 -1
- data/lib/super_diff/rspec/matcher_text_builders/have_predicate.rb +4 -4
- data/lib/super_diff/rspec/matcher_text_builders/raise_error.rb +1 -1
- data/lib/super_diff/rspec/matcher_text_builders/respond_to.rb +5 -5
- data/lib/super_diff/rspec/monkey_patches.rb +22 -13
- data/lib/super_diff/rspec/operation_tree_builders/collection_containing_exactly.rb +12 -1
- data/lib/super_diff/version.rb +1 -1
- data/spec/examples.txt +393 -5
- data/spec/integration/rspec/be_falsey_matcher_spec.rb +10 -10
- data/spec/integration/rspec/be_matcher_spec.rb +100 -100
- data/spec/integration/rspec/be_nil_matcher_spec.rb +10 -10
- data/spec/integration/rspec/be_predicate_matcher_spec.rb +103 -103
- data/spec/integration/rspec/be_truthy_matcher_spec.rb +10 -10
- data/spec/integration/rspec/contain_exactly_matcher_spec.rb +107 -107
- data/spec/integration/rspec/eq_matcher_spec.rb +230 -230
- data/spec/integration/rspec/have_attributes_matcher_spec.rb +129 -129
- data/spec/integration/rspec/have_predicate_matcher_spec.rb +65 -65
- data/spec/integration/rspec/include_matcher_spec.rb +73 -73
- data/spec/integration/rspec/match_array_matcher_spec.rb +119 -119
- data/spec/integration/rspec/match_matcher_spec.rb +274 -274
- data/spec/integration/rspec/raise_error_matcher_spec.rb +86 -86
- data/spec/integration/rspec/respond_to_matcher_spec.rb +240 -240
- data/spec/integration/rspec/third_party_matcher_spec.rb +8 -8
- data/spec/integration/rspec/unhandled_errors_spec.rb +5 -5
- data/spec/spec_helper.rb +22 -13
- data/spec/support/integration/helpers.rb +6 -2
- data/spec/support/integration/matchers/produce_output_when_run_matcher.rb +1 -1
- data/spec/support/integration/test_programs/base.rb +2 -0
- data/spec/support/integration/test_programs/rspec_active_record.rb +1 -1
- data/spec/support/integration/test_programs/rspec_active_support.rb +17 -0
- data/spec/support/integration/test_programs/rspec_rails.rb +1 -1
- data/spec/support/shared_examples/active_record.rb +108 -108
- data/spec/support/shared_examples/hash_with_indifferent_access.rb +196 -232
- data/spec/tmp/integration_spec.rb +15 -0
- data/spec/unit/equality_matchers/main_spec.rb +403 -403
- data/super_diff.gemspec +1 -1
- metadata +11 -3
@@ -26,12 +26,12 @@ module SuperDiff
|
|
26
26
|
end
|
27
27
|
end
|
28
28
|
|
29
|
-
def
|
29
|
+
def actual_color
|
30
30
|
:yellow
|
31
31
|
end
|
32
32
|
|
33
33
|
def add_actual_value
|
34
|
-
template.add_text_in_color(
|
34
|
+
template.add_text_in_color(actual_color) do
|
35
35
|
description_of(actual)
|
36
36
|
end
|
37
37
|
end
|
@@ -39,12 +39,12 @@ module SuperDiff
|
|
39
39
|
def add_expected_value_to_failure_message(template)
|
40
40
|
template.add_text " "
|
41
41
|
template.add_text_in_color(
|
42
|
-
|
42
|
+
expected_color,
|
43
43
|
"#{expected_for_failure_message}?",
|
44
44
|
)
|
45
45
|
template.add_text " or "
|
46
46
|
template.add_text_in_color(
|
47
|
-
|
47
|
+
expected_color,
|
48
48
|
"#{expected_for_failure_message}s?",
|
49
49
|
)
|
50
50
|
end
|
@@ -52,12 +52,12 @@ module SuperDiff
|
|
52
52
|
def add_expected_value_to_description(template)
|
53
53
|
template.add_text " "
|
54
54
|
template.add_text_in_color(
|
55
|
-
|
55
|
+
expected_color,
|
56
56
|
"`#{expected_for_description}?`",
|
57
57
|
)
|
58
58
|
template.add_text " or "
|
59
59
|
template.add_text_in_color(
|
60
|
-
|
60
|
+
expected_color,
|
61
61
|
"`#{expected_for_description}s?`",
|
62
62
|
)
|
63
63
|
end
|
@@ -20,12 +20,12 @@ module SuperDiff
|
|
20
20
|
end
|
21
21
|
end
|
22
22
|
|
23
|
-
def
|
23
|
+
def actual_color
|
24
24
|
:yellow
|
25
25
|
end
|
26
26
|
|
27
27
|
def add_actual_value
|
28
|
-
template.add_text_in_color(
|
28
|
+
template.add_text_in_color(actual_color) do
|
29
29
|
description_of(actual)
|
30
30
|
end
|
31
31
|
end
|
@@ -33,7 +33,7 @@ module SuperDiff
|
|
33
33
|
def add_expected_value_to_failure_message(template)
|
34
34
|
template.add_text " "
|
35
35
|
template.add_text_in_color(
|
36
|
-
|
36
|
+
expected_color,
|
37
37
|
expected_for_failure_message,
|
38
38
|
)
|
39
39
|
end
|
@@ -41,7 +41,7 @@ module SuperDiff
|
|
41
41
|
def add_expected_value_to_description(template)
|
42
42
|
template.add_text " "
|
43
43
|
template.add_text_in_color(
|
44
|
-
|
44
|
+
expected_color,
|
45
45
|
"`#{expected_for_description}`",
|
46
46
|
)
|
47
47
|
end
|
@@ -20,7 +20,7 @@ module SuperDiff
|
|
20
20
|
|
21
21
|
def add_expected_value_to(template, expected)
|
22
22
|
template.add_text " "
|
23
|
-
template.add_list_in_color(
|
23
|
+
template.add_list_in_color(expected_color, expected)
|
24
24
|
end
|
25
25
|
|
26
26
|
def add_extra_after_expected_to(template)
|
@@ -57,14 +57,14 @@ module SuperDiff
|
|
57
57
|
|
58
58
|
def add_arity_clause_to(template)
|
59
59
|
template.add_text " with "
|
60
|
-
template.add_text_in_color
|
60
|
+
template.add_text_in_color expected_color, expected_arity
|
61
61
|
template.add_text " "
|
62
62
|
template.add_text pluralize("argument", expected_arity)
|
63
63
|
end
|
64
64
|
|
65
65
|
def add_arbitrary_keywords_clause_to(template)
|
66
66
|
template.add_text " with "
|
67
|
-
template.add_text_in_color
|
67
|
+
template.add_text_in_color expected_color, "any"
|
68
68
|
template.add_text " keywords"
|
69
69
|
end
|
70
70
|
|
@@ -72,7 +72,7 @@ module SuperDiff
|
|
72
72
|
template.add_text " with "
|
73
73
|
template.add_text pluralize("keyword", expected_keywords.length)
|
74
74
|
template.add_text " "
|
75
|
-
template.add_list_in_color
|
75
|
+
template.add_list_in_color expected_color, expected_keywords
|
76
76
|
end
|
77
77
|
|
78
78
|
def add_unlimited_arguments_clause_to(template)
|
@@ -82,7 +82,7 @@ module SuperDiff
|
|
82
82
|
template.add_text " with "
|
83
83
|
end
|
84
84
|
|
85
|
-
template.add_text_in_color
|
85
|
+
template.add_text_in_color expected_color, "unlimited"
|
86
86
|
template.add_text " arguments"
|
87
87
|
end
|
88
88
|
|
@@ -9,6 +9,7 @@ require "rspec/matchers/built_in/eq"
|
|
9
9
|
require "rspec/matchers/built_in/have_attributes"
|
10
10
|
require "rspec/matchers/built_in/include"
|
11
11
|
require "rspec/matchers/built_in/match"
|
12
|
+
require "rspec/version"
|
12
13
|
|
13
14
|
module RSpec
|
14
15
|
module Expectations
|
@@ -272,34 +273,34 @@ module RSpec
|
|
272
273
|
return expected if self === expected
|
273
274
|
|
274
275
|
text =
|
275
|
-
colorizer.wrap("Diff:", SuperDiff
|
276
|
+
colorizer.wrap("Diff:", SuperDiff.configuration.header_color) +
|
276
277
|
"\n\n" +
|
277
278
|
colorizer.wrap(
|
278
279
|
"┌ (Key) ──────────────────────────┐",
|
279
|
-
SuperDiff
|
280
|
+
SuperDiff.configuration.border_color
|
280
281
|
) +
|
281
282
|
"\n" +
|
282
|
-
colorizer.wrap("│ ", SuperDiff
|
283
|
+
colorizer.wrap("│ ", SuperDiff.configuration.border_color) +
|
283
284
|
colorizer.wrap(
|
284
285
|
"‹-› in expected, not in actual",
|
285
|
-
SuperDiff
|
286
|
+
SuperDiff.configuration.expected_color
|
286
287
|
) +
|
287
|
-
colorizer.wrap(" │", SuperDiff
|
288
|
+
colorizer.wrap(" │", SuperDiff.configuration.border_color) +
|
288
289
|
"\n" +
|
289
|
-
colorizer.wrap("│ ", SuperDiff
|
290
|
+
colorizer.wrap("│ ", SuperDiff.configuration.border_color) +
|
290
291
|
colorizer.wrap(
|
291
292
|
"‹+› in actual, not in expected",
|
292
|
-
SuperDiff
|
293
|
+
SuperDiff.configuration.actual_color
|
293
294
|
) +
|
294
|
-
colorizer.wrap(" │", SuperDiff
|
295
|
+
colorizer.wrap(" │", SuperDiff.configuration.border_color) +
|
295
296
|
"\n" +
|
296
|
-
colorizer.wrap("│ ", SuperDiff
|
297
|
+
colorizer.wrap("│ ", SuperDiff.configuration.border_color) +
|
297
298
|
"‹ › in both expected and actual" +
|
298
|
-
colorizer.wrap(" │", SuperDiff
|
299
|
+
colorizer.wrap(" │", SuperDiff.configuration.border_color) +
|
299
300
|
"\n" +
|
300
301
|
colorizer.wrap(
|
301
302
|
"└─────────────────────────────────┘",
|
302
|
-
SuperDiff
|
303
|
+
SuperDiff.configuration.border_color
|
303
304
|
)
|
304
305
|
|
305
306
|
new([[expected, text]])
|
@@ -394,7 +395,11 @@ module RSpec
|
|
394
395
|
end
|
395
396
|
|
396
397
|
def expected_for_matcher_text
|
397
|
-
|
398
|
+
if SuperDiff::RSpec.rspec_version < "3.10"
|
399
|
+
expected
|
400
|
+
else
|
401
|
+
predicate.to_s.chomp('?')
|
402
|
+
end
|
398
403
|
end
|
399
404
|
|
400
405
|
def expected_action_for_matcher_text
|
@@ -545,7 +550,11 @@ module RSpec
|
|
545
550
|
end
|
546
551
|
|
547
552
|
def expected_for_matcher_text
|
548
|
-
"
|
553
|
+
if SuperDiff::RSpec.rspec_version < "3.10"
|
554
|
+
"#{predicate}#{failure_message_args_description}"
|
555
|
+
else
|
556
|
+
"#{predicate}#{args_to_s}"
|
557
|
+
end
|
549
558
|
end
|
550
559
|
|
551
560
|
def expected_action_for_matcher_text
|
@@ -17,10 +17,16 @@ module SuperDiff
|
|
17
17
|
def unary_operations
|
18
18
|
operations = []
|
19
19
|
|
20
|
-
(0...actual.length).
|
20
|
+
(0...actual.length).reject do |index|
|
21
|
+
indexes_in_actual_but_not_in_expected.include?(index)
|
22
|
+
end.each do |index|
|
21
23
|
add_noop_to(operations, index)
|
22
24
|
end
|
23
25
|
|
26
|
+
indexes_in_actual_but_not_in_expected.each do |index|
|
27
|
+
add_insert_to(operations, index)
|
28
|
+
end
|
29
|
+
|
24
30
|
indexes_in_expected_but_not_in_actual.each do |index|
|
25
31
|
add_delete_to(operations, index)
|
26
32
|
end
|
@@ -84,6 +90,11 @@ module SuperDiff
|
|
84
90
|
end
|
85
91
|
end
|
86
92
|
|
93
|
+
def indexes_in_actual_but_not_in_expected
|
94
|
+
@indexes_in_actual_but_not_in_expected ||=
|
95
|
+
pairings_maximizer_best_solution.unmatched_actual_indexes
|
96
|
+
end
|
97
|
+
|
87
98
|
def indexes_in_expected_but_not_in_actual
|
88
99
|
pairings_maximizer_best_solution.unmatched_expected_indexes
|
89
100
|
end
|
data/lib/super_diff/version.rb
CHANGED
data/spec/examples.txt
CHANGED
@@ -1,5 +1,393 @@
|
|
1
|
-
example_id
|
2
|
-
|
3
|
-
./spec/integration/
|
4
|
-
./spec/integration/
|
5
|
-
./spec/integration/
|
1
|
+
example_id | status | run_time |
|
2
|
+
---------------------------------------------------------------------------- | ------- | --------------- |
|
3
|
+
./spec/integration/rails/active_record_spec.rb[1:1:1:1:1] | passed | 0.62624 seconds |
|
4
|
+
./spec/integration/rails/active_record_spec.rb[1:1:1:2:1] | passed | 0.59609 seconds |
|
5
|
+
./spec/integration/rails/active_record_spec.rb[1:1:1:3:1] | passed | 0.58647 seconds |
|
6
|
+
./spec/integration/rails/active_record_spec.rb[1:1:1:4:1] | passed | 0.61553 seconds |
|
7
|
+
./spec/integration/rails/active_record_spec.rb[1:1:1:5:1] | passed | 0.62496 seconds |
|
8
|
+
./spec/integration/rails/active_record_spec.rb[1:1:1:6:1] | passed | 0.63933 seconds |
|
9
|
+
./spec/integration/rails/active_record_spec.rb[1:1:2:1:1] | passed | 0.64394 seconds |
|
10
|
+
./spec/integration/rails/active_record_spec.rb[1:2:1:1:1] | passed | 0.62941 seconds |
|
11
|
+
./spec/integration/rails/active_record_spec.rb[1:2:1:2:1] | passed | 0.59821 seconds |
|
12
|
+
./spec/integration/rails/active_record_spec.rb[1:2:1:3:1] | passed | 0.61109 seconds |
|
13
|
+
./spec/integration/rails/active_record_spec.rb[1:2:1:4:1] | passed | 0.63729 seconds |
|
14
|
+
./spec/integration/rails/active_record_spec.rb[1:2:1:5:1] | passed | 0.63419 seconds |
|
15
|
+
./spec/integration/rails/active_record_spec.rb[1:2:1:6:1] | passed | 0.66077 seconds |
|
16
|
+
./spec/integration/rails/active_record_spec.rb[1:2:2:1:1] | passed | 0.69033 seconds |
|
17
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:1:1:1:1:1] | passed | 0.59184 seconds |
|
18
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:1:1:1:2:1] | passed | 0.59744 seconds |
|
19
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:1:2:1:1:1] | passed | 0.61783 seconds |
|
20
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:1:2:1:2:1] | passed | 0.66679 seconds |
|
21
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:1:2:2:1:1] | passed | 0.61487 seconds |
|
22
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:1:2:2:2:1] | passed | 0.61858 seconds |
|
23
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:2:1:1:1:1] | passed | 0.59477 seconds |
|
24
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:2:1:1:2:1] | passed | 0.6231 seconds |
|
25
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:2:2:1:1:1] | passed | 0.59714 seconds |
|
26
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:2:2:1:2:1] | passed | 0.61587 seconds |
|
27
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:2:2:2:1:1] | passed | 0.61792 seconds |
|
28
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:2:2:2:2:1] | passed | 0.6356 seconds |
|
29
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:1:1:1:1:1] | passed | 0.61439 seconds |
|
30
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:1:1:1:2:1] | passed | 0.60711 seconds |
|
31
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:1:2:1:1:1] | passed | 0.61293 seconds |
|
32
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:1:2:1:2:1] | passed | 0.61165 seconds |
|
33
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:1:2:2:1:1] | passed | 0.61337 seconds |
|
34
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:1:2:2:2:1] | passed | 0.61664 seconds |
|
35
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:2:1:1:1:1] | passed | 0.59852 seconds |
|
36
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:2:1:1:2:1] | passed | 0.62029 seconds |
|
37
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:2:2:1:1:1] | passed | 0.5906 seconds |
|
38
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:2:2:1:2:1] | passed | 0.62242 seconds |
|
39
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:2:2:2:1:1] | passed | 0.60868 seconds |
|
40
|
+
./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:2:2:2:2:1] | passed | 0.62133 seconds |
|
41
|
+
./spec/integration/rspec/be_falsey_matcher_spec.rb[1:1] | passed | 0.5443 seconds |
|
42
|
+
./spec/integration/rspec/be_falsey_matcher_spec.rb[1:2] | passed | 0.5424 seconds |
|
43
|
+
./spec/integration/rspec/be_matcher_spec.rb[1:1:1:1] | passed | 0.59983 seconds |
|
44
|
+
./spec/integration/rspec/be_matcher_spec.rb[1:1:1:2] | passed | 0.54502 seconds |
|
45
|
+
./spec/integration/rspec/be_matcher_spec.rb[1:1:2:1] | passed | 0.60246 seconds |
|
46
|
+
./spec/integration/rspec/be_matcher_spec.rb[1:1:2:2] | passed | 0.59523 seconds |
|
47
|
+
./spec/integration/rspec/be_matcher_spec.rb[1:2:1] | passed | 0.55824 seconds |
|
48
|
+
./spec/integration/rspec/be_matcher_spec.rb[1:2:2] | failed | 0.21517 seconds |
|
49
|
+
./spec/integration/rspec/be_matcher_spec.rb[1:3:1] | passed | 0.55522 seconds |
|
50
|
+
./spec/integration/rspec/be_matcher_spec.rb[1:3:2] | passed | 0.5522 seconds |
|
51
|
+
./spec/integration/rspec/be_matcher_spec.rb[1:4:1] | passed | 0.5454 seconds |
|
52
|
+
./spec/integration/rspec/be_matcher_spec.rb[1:4:2] | passed | 0.53827 seconds |
|
53
|
+
./spec/integration/rspec/be_matcher_spec.rb[1:5:1] | passed | 0.58468 seconds |
|
54
|
+
./spec/integration/rspec/be_matcher_spec.rb[1:5:2] | passed | 0.5956 seconds |
|
55
|
+
./spec/integration/rspec/be_matcher_spec.rb[1:6:1] | passed | 0.54492 seconds |
|
56
|
+
./spec/integration/rspec/be_matcher_spec.rb[1:6:2] | passed | 0.54989 seconds |
|
57
|
+
./spec/integration/rspec/be_matcher_spec.rb[1:7:1] | passed | 0.54838 seconds |
|
58
|
+
./spec/integration/rspec/be_matcher_spec.rb[1:7:2] | passed | 0.54378 seconds |
|
59
|
+
./spec/integration/rspec/be_matcher_spec.rb[1:8:1] | passed | 0.54165 seconds |
|
60
|
+
./spec/integration/rspec/be_matcher_spec.rb[1:8:2] | failed | 0.30975 seconds |
|
61
|
+
./spec/integration/rspec/be_matcher_spec.rb[1:9:1] | passed | 0.5511 seconds |
|
62
|
+
./spec/integration/rspec/be_matcher_spec.rb[1:9:2] | passed | 0.56559 seconds |
|
63
|
+
./spec/integration/rspec/be_nil_matcher_spec.rb[1:1] | passed | 0.54781 seconds |
|
64
|
+
./spec/integration/rspec/be_nil_matcher_spec.rb[1:2] | passed | 0.53927 seconds |
|
65
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:1:1:1] | passed | 0.54534 seconds |
|
66
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:1:2:1] | passed | 0.56332 seconds |
|
67
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:1:1:1] | passed | 0.54912 seconds |
|
68
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:1:2:1] | passed | 0.55163 seconds |
|
69
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:1:1:1:1] | passed | 0.55764 seconds |
|
70
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:1:1:2:1] | passed | 0.55081 seconds |
|
71
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:1:2:1] | passed | 0.5543 seconds |
|
72
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:1:3:1:1:1] | passed | 0.57475 seconds |
|
73
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:1:3:1:2:1] | passed | 0.55333 seconds |
|
74
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:1:3:2:1:1] | passed | 0.55251 seconds |
|
75
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:1:3:2:2:1] | passed | 0.5462 seconds |
|
76
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:2:1:1] | passed | 0.54918 seconds |
|
77
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:2:2:1] | passed | 0.54995 seconds |
|
78
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:1:1:1] | passed | 0.55277 seconds |
|
79
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:1:2:1] | passed | 0.54664 seconds |
|
80
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:1:1:1] | passed | 0.55111 seconds |
|
81
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:1:2:1] | passed | 0.55316 seconds |
|
82
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:1:1:1:1] | passed | 0.54935 seconds |
|
83
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:1:1:2:1] | passed | 0.54826 seconds |
|
84
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:1:2:1] | passed | 0.55571 seconds |
|
85
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:1:3:1:1:1] | passed | 0.54996 seconds |
|
86
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:1:3:1:2:1] | passed | 0.55452 seconds |
|
87
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:1:3:2:1:1] | passed | 0.63198 seconds |
|
88
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:1:3:2:2:1] | passed | 0.54832 seconds |
|
89
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:2:1:1] | passed | 0.55436 seconds |
|
90
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:2:2:1] | passed | 0.55096 seconds |
|
91
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:1:1:1] | passed | 0.55392 seconds |
|
92
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:1:2:1] | passed | 0.5517 seconds |
|
93
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:1:1:1] | passed | 0.55763 seconds |
|
94
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:1:2:1] | passed | 0.55192 seconds |
|
95
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:1:1:1:1] | passed | 0.55431 seconds |
|
96
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:1:1:2:1] | passed | 0.55587 seconds |
|
97
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:1:2:1] | passed | 0.54924 seconds |
|
98
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:1:3:1:1:1] | passed | 0.57886 seconds |
|
99
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:1:3:1:2:1] | passed | 0.55057 seconds |
|
100
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:1:3:2:1:1] | passed | 0.55067 seconds |
|
101
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:1:3:2:2:1] | passed | 0.55038 seconds |
|
102
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:2:1:1] | passed | 0.56901 seconds |
|
103
|
+
./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:2:2:1] | passed | 0.54844 seconds |
|
104
|
+
./spec/integration/rspec/be_truthy_matcher_spec.rb[1:1] | passed | 0.54689 seconds |
|
105
|
+
./spec/integration/rspec/be_truthy_matcher_spec.rb[1:2] | passed | 0.5494 seconds |
|
106
|
+
./spec/integration/rspec/contain_exactly_matcher_spec.rb[1:1:1] | passed | 1.31 seconds |
|
107
|
+
./spec/integration/rspec/contain_exactly_matcher_spec.rb[1:1:2] | passed | 1.28 seconds |
|
108
|
+
./spec/integration/rspec/contain_exactly_matcher_spec.rb[1:2:1:1] | passed | 1.32 seconds |
|
109
|
+
./spec/integration/rspec/contain_exactly_matcher_spec.rb[1:2:1:2] | passed | 1.28 seconds |
|
110
|
+
./spec/integration/rspec/contain_exactly_matcher_spec.rb[1:2:2:1] | passed | 1.46 seconds |
|
111
|
+
./spec/integration/rspec/contain_exactly_matcher_spec.rb[1:2:2:2] | passed | 1.29 seconds |
|
112
|
+
./spec/integration/rspec/contain_exactly_matcher_spec.rb[1:2:3:1] | passed | 1.35 seconds |
|
113
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:1:1:1:1:1] | passed | 0.59172 seconds |
|
114
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:1:1:1:2:1] | passed | 0.57671 seconds |
|
115
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:1:3:1:1:1] | passed | 0.63391 seconds |
|
116
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:1:3:1:2:1] | failed | 0.33467 seconds |
|
117
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:2:1] | passed | 0.54104 seconds |
|
118
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:2:2] | passed | 0.53856 seconds |
|
119
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:3:1] | passed | 0.54468 seconds |
|
120
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:3:2] | passed | 0.54243 seconds |
|
121
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:4:1] | passed | 0.56703 seconds |
|
122
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:4:2] | passed | 0.53962 seconds |
|
123
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:5:1] | passed | 0.55813 seconds |
|
124
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:5:2] | unknown | |
|
125
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:6:1] | passed | 0.5649 seconds |
|
126
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:7:1] | passed | 0.569 seconds |
|
127
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:8:1] | passed | 0.59264 seconds |
|
128
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:8:2] | passed | 0.55215 seconds |
|
129
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:9:1] | passed | 0.59106 seconds |
|
130
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:9:2] | passed | 0.55607 seconds |
|
131
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:10:1] | passed | 0.55153 seconds |
|
132
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:10:2] | passed | 0.55014 seconds |
|
133
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:11:1] | passed | 0.55086 seconds |
|
134
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:11:2] | passed | 0.5429 seconds |
|
135
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:12:1] | passed | 0.57413 seconds |
|
136
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:12:2] | unknown | |
|
137
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:13:1] | passed | 0.56604 seconds |
|
138
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:14:1] | passed | 0.56497 seconds |
|
139
|
+
./spec/integration/rspec/eq_matcher_spec.rb[1:15:1] | unknown | |
|
140
|
+
./spec/integration/rspec/have_attributes_matcher_spec.rb[1:1:1:1:1] | passed | 0.57696 seconds |
|
141
|
+
./spec/integration/rspec/have_attributes_matcher_spec.rb[1:1:1:1:2] | passed | 0.54086 seconds |
|
142
|
+
./spec/integration/rspec/have_attributes_matcher_spec.rb[1:1:1:2:1] | passed | 0.5803 seconds |
|
143
|
+
./spec/integration/rspec/have_attributes_matcher_spec.rb[1:1:2:1:1] | passed | 0.57684 seconds |
|
144
|
+
./spec/integration/rspec/have_attributes_matcher_spec.rb[1:1:2:1:2] | passed | 0.54548 seconds |
|
145
|
+
./spec/integration/rspec/have_attributes_matcher_spec.rb[1:1:2:2:1] | passed | 0.57912 seconds |
|
146
|
+
./spec/integration/rspec/have_attributes_matcher_spec.rb[1:2:1] | passed | 0.57504 seconds |
|
147
|
+
./spec/integration/rspec/have_attributes_matcher_spec.rb[1:2:2:1] | passed | 0.58155 seconds |
|
148
|
+
./spec/integration/rspec/have_predicate_matcher_spec.rb[1:1:1:1] | passed | 0.5437 seconds |
|
149
|
+
./spec/integration/rspec/have_predicate_matcher_spec.rb[1:1:2:1] | passed | 0.54703 seconds |
|
150
|
+
./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:1:1:1] | passed | 0.54758 seconds |
|
151
|
+
./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:1:2:1] | passed | 0.5462 seconds |
|
152
|
+
./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:1:1:1:1] | passed | 0.549 seconds |
|
153
|
+
./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:1:1:2:1] | passed | 0.54514 seconds |
|
154
|
+
./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:1:2:1:1] | passed | 0.54244 seconds |
|
155
|
+
./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:1:2:2:1] | passed | 0.55271 seconds |
|
156
|
+
./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:2:1:1:1] | passed | 0.54509 seconds |
|
157
|
+
./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:2:1:2:1] | passed | 0.54272 seconds |
|
158
|
+
./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:2:2:1:1] | passed | 0.55007 seconds |
|
159
|
+
./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:2:2:2:1] | passed | 0.56816 seconds |
|
160
|
+
./spec/integration/rspec/include_matcher_spec.rb[1:1:1:1] | passed | 0.56447 seconds |
|
161
|
+
./spec/integration/rspec/include_matcher_spec.rb[1:1:1:2] | passed | 0.54395 seconds |
|
162
|
+
./spec/integration/rspec/include_matcher_spec.rb[1:1:2:1] | passed | 0.56385 seconds |
|
163
|
+
./spec/integration/rspec/include_matcher_spec.rb[1:1:2:2] | passed | 0.5522 seconds |
|
164
|
+
./spec/integration/rspec/include_matcher_spec.rb[1:2:1:1] | passed | 0.57111 seconds |
|
165
|
+
./spec/integration/rspec/include_matcher_spec.rb[1:2:1:2] | passed | 0.53943 seconds |
|
166
|
+
./spec/integration/rspec/include_matcher_spec.rb[1:2:2:1] | passed | 0.57249 seconds |
|
167
|
+
./spec/integration/rspec/include_matcher_spec.rb[1:2:2:2] | passed | 0.55376 seconds |
|
168
|
+
./spec/integration/rspec/match_array_matcher_spec.rb[1:1:1] | passed | 0.57448 seconds |
|
169
|
+
./spec/integration/rspec/match_array_matcher_spec.rb[1:1:2] | passed | 0.54896 seconds |
|
170
|
+
./spec/integration/rspec/match_array_matcher_spec.rb[1:2:1:1] | passed | 0.57031 seconds |
|
171
|
+
./spec/integration/rspec/match_array_matcher_spec.rb[1:2:1:2] | passed | 0.54667 seconds |
|
172
|
+
./spec/integration/rspec/match_array_matcher_spec.rb[1:2:2:1] | passed | 0.57842 seconds |
|
173
|
+
./spec/integration/rspec/match_array_matcher_spec.rb[1:2:2:2] | passed | 0.57587 seconds |
|
174
|
+
./spec/integration/rspec/match_array_matcher_spec.rb[1:2:3:1] | passed | 0.57884 seconds |
|
175
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:1:1:1:1:1] | passed | 1.38 seconds |
|
176
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:1:1:1:2:1] | passed | 1.4 seconds |
|
177
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:1:3:1:1:1] | passed | 1.47 seconds |
|
178
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:1:3:1:2:1] | failed | 0.73049 seconds |
|
179
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:2:1:1] | passed | 1.4 seconds |
|
180
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:2:1:2] | passed | 1.44 seconds |
|
181
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:2:2:1] | passed | 1.5 seconds |
|
182
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:2:2:2] | passed | 1.36 seconds |
|
183
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:3:1:1] | passed | 1.71 seconds |
|
184
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:3:1:2] | passed | 1.4 seconds |
|
185
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:3:2:1] | passed | 1.4 seconds |
|
186
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:4:1:1] | passed | 1.87 seconds |
|
187
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:4:1:2] | passed | 1.9 seconds |
|
188
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:4:2:1] | passed | 1.63 seconds |
|
189
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:4:2:2] | passed | 1.86 seconds |
|
190
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:5:1:1] | passed | 1.39 seconds |
|
191
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:5:1:2] | passed | 1.56 seconds |
|
192
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:5:2:1] | passed | 1.6 seconds |
|
193
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:6:1:1] | passed | 1.4 seconds |
|
194
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:6:1:2] | passed | 2.03 seconds |
|
195
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:6:2:1] | passed | 1.71 seconds |
|
196
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:6:2:2] | passed | 3.16 seconds |
|
197
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:7:1] | passed | 1.49 seconds |
|
198
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:7:2] | passed | 1.41 seconds |
|
199
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:8:1:1] | passed | 1.39 seconds |
|
200
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:8:1:2] | passed | 1.34 seconds |
|
201
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:8:2:1] | passed | 1.41 seconds |
|
202
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:8:2:2] | passed | 1.34 seconds |
|
203
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:9:1:1] | passed | 1.59 seconds |
|
204
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:9:1:2] | passed | 1.4 seconds |
|
205
|
+
./spec/integration/rspec/match_matcher_spec.rb[1:9:2:1] | passed | 1.41 seconds |
|
206
|
+
./spec/integration/rspec/raise_error_matcher_spec.rb[1:1:1:1:1:1] | passed | 0.54907 seconds |
|
207
|
+
./spec/integration/rspec/raise_error_matcher_spec.rb[1:1:1:1:2:1] | passed | 0.53465 seconds |
|
208
|
+
./spec/integration/rspec/raise_error_matcher_spec.rb[1:1:1:2:1] | passed | 0.59547 seconds |
|
209
|
+
./spec/integration/rspec/raise_error_matcher_spec.rb[1:1:2:1:1] | passed | 0.64002 seconds |
|
210
|
+
./spec/integration/rspec/raise_error_matcher_spec.rb[1:1:2:2:1] | passed | 0.57728 seconds |
|
211
|
+
./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:1:1:1:1] | passed | 0.56274 seconds |
|
212
|
+
./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:1:1:2:1:1] | passed | 0.54012 seconds |
|
213
|
+
./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:1:1:2:2:1] | passed | 0.56665 seconds |
|
214
|
+
./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:1:2:1:1] | passed | 0.54152 seconds |
|
215
|
+
./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:1:2:2:1:1] | passed | 0.54756 seconds |
|
216
|
+
./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:1:2:2:2:1] | passed | 0.54343 seconds |
|
217
|
+
./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:2:1:1] | passed | 0.54672 seconds |
|
218
|
+
./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:2:2:1:1] | passed | 0.54849 seconds |
|
219
|
+
./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:2:2:2:1] | passed | 0.54099 seconds |
|
220
|
+
./spec/integration/rspec/raise_error_matcher_spec.rb[1:3:1:1:1:1] | passed | 0.56177 seconds |
|
221
|
+
./spec/integration/rspec/raise_error_matcher_spec.rb[1:3:1:1:2:1] | passed | 0.54618 seconds |
|
222
|
+
./spec/integration/rspec/raise_error_matcher_spec.rb[1:3:1:2:1:1] | passed | 0.53932 seconds |
|
223
|
+
./spec/integration/rspec/raise_error_matcher_spec.rb[1:3:1:2:2:1] | passed | 0.54541 seconds |
|
224
|
+
./spec/integration/rspec/raise_error_matcher_spec.rb[1:3:2:1:1] | passed | 0.5597 seconds |
|
225
|
+
./spec/integration/rspec/raise_error_matcher_spec.rb[1:3:2:2:1] | passed | 0.55172 seconds |
|
226
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:1:1:1] | passed | 0.55764 seconds |
|
227
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:1:1:2] | passed | 0.62811 seconds |
|
228
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:1:2:1] | passed | 0.58299 seconds |
|
229
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:1:2:2] | passed | 0.68041 seconds |
|
230
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:2:1:1] | passed | 0.54488 seconds |
|
231
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:2:1:2] | passed | 0.55464 seconds |
|
232
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:2:2:1] | passed | 0.56717 seconds |
|
233
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:2:2:2] | passed | 0.55992 seconds |
|
234
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:3:1:1] | passed | 0.54252 seconds |
|
235
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:3:1:2] | passed | 0.55999 seconds |
|
236
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:3:2:1] | passed | 0.5564 seconds |
|
237
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:3:2:2] | passed | 0.55839 seconds |
|
238
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:4:1:1] | passed | 0.55121 seconds |
|
239
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:4:1:2] | passed | 0.54729 seconds |
|
240
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:4:2:1] | passed | 0.55016 seconds |
|
241
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:4:2:2] | passed | 0.5492 seconds |
|
242
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:5:1:1] | passed | 0.54563 seconds |
|
243
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:5:1:2] | passed | 0.54797 seconds |
|
244
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:5:2:1] | passed | 0.54319 seconds |
|
245
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:5:2:2] | passed | 0.54951 seconds |
|
246
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:6:1] | passed | 0.5436 seconds |
|
247
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:6:2] | passed | 0.58199 seconds |
|
248
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:7:1] | passed | 0.54256 seconds |
|
249
|
+
./spec/integration/rspec/respond_to_matcher_spec.rb[1:7:2] | passed | 0.55333 seconds |
|
250
|
+
./spec/integration/rspec/third_party_matcher_spec.rb[1:1:1:1:1] | passed | 1.12 seconds |
|
251
|
+
./spec/integration/rspec/third_party_matcher_spec.rb[1:1:1:2:1:1] | passed | 1.06 seconds |
|
252
|
+
./spec/integration/rspec/third_party_matcher_spec.rb[1:1:1:2:2:1] | passed | 1.04 seconds |
|
253
|
+
./spec/integration/rspec/third_party_matcher_spec.rb[1:1:2:1] | passed | 0.99341 seconds |
|
254
|
+
./spec/integration/rspec/third_party_matcher_spec.rb[1:2:1:1:1] | passed | 0.99083 seconds |
|
255
|
+
./spec/integration/rspec/third_party_matcher_spec.rb[1:2:1:2:1:1] | passed | 0.98109 seconds |
|
256
|
+
./spec/integration/rspec/third_party_matcher_spec.rb[1:2:1:2:2:1] | passed | 0.99618 seconds |
|
257
|
+
./spec/integration/rspec/third_party_matcher_spec.rb[1:2:2:1] | passed | 0.99465 seconds |
|
258
|
+
./spec/integration/rspec/unhandled_errors_spec.rb[1:1:1:1] | passed | 0.54549 seconds |
|
259
|
+
./spec/integration/rspec/unhandled_errors_spec.rb[1:1:2:1] | passed | 0.5357 seconds |
|
260
|
+
./spec/integration/rspec/unhandled_errors_spec.rb[1:2:1] | passed | 0.531 seconds |
|
261
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:1:1] | passed | 0.0007 seconds |
|
262
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:2:1] | passed | 0.0007 seconds |
|
263
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:3:1] | passed | 0.00127 seconds |
|
264
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:4:1] | passed | 0.00068 seconds |
|
265
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:5:1] | passed | 0.00252 seconds |
|
266
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:6:1] | passed | 0.00077 seconds |
|
267
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:7:1] | passed | 0.00094 seconds |
|
268
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:8:1] | passed | 0.00122 seconds |
|
269
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:9:1] | passed | 0.00144 seconds |
|
270
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:10:1] | passed | 0.00116 seconds |
|
271
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:11:1] | passed | 0.00138 seconds |
|
272
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:12:1] | passed | 0.002 seconds |
|
273
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:13:1] | passed | 0.00369 seconds |
|
274
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:14:1] | passed | 0.00076 seconds |
|
275
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:15:1] | passed | 0.02667 seconds |
|
276
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:16:1] | passed | 0.00245 seconds |
|
277
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:17:1] | passed | 0.00224 seconds |
|
278
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:18:1] | passed | 0.00546 seconds |
|
279
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:19:1] | passed | 0.00236 seconds |
|
280
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:20:1] | passed | 0.00343 seconds |
|
281
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:21:1] | passed | 0.00422 seconds |
|
282
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:22:1] | passed | 0.00237 seconds |
|
283
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:23:1] | passed | 0.0043 seconds |
|
284
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:24:1] | passed | 0.00561 seconds |
|
285
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:25:1] | passed | 0.00429 seconds |
|
286
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:26:1] | passed | 0.00705 seconds |
|
287
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:27:1] | passed | 0.00077 seconds |
|
288
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:28:1] | passed | 0.00627 seconds |
|
289
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:29:1] | passed | 0.00266 seconds |
|
290
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:30:1] | passed | 0.00249 seconds |
|
291
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:31:1] | passed | 0.00244 seconds |
|
292
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:32:1] | passed | 0.00473 seconds |
|
293
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:33:1] | passed | 0.0018 seconds |
|
294
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:34:1] | passed | 0.0018 seconds |
|
295
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:35:1:1] | passed | 0.00715 seconds |
|
296
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:35:2:1] | passed | 0.01072 seconds |
|
297
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:36:1] | passed | 0.00748 seconds |
|
298
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:37:1] | passed | 0.00333 seconds |
|
299
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:38:1] | passed | 0.00285 seconds |
|
300
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:39:1] | passed | 0.00936 seconds |
|
301
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:40:1] | passed | 0.00078 seconds |
|
302
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:41:1] | passed | 0.00905 seconds |
|
303
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:42:1] | passed | 0.00682 seconds |
|
304
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:43:1] | passed | 0.00162 seconds |
|
305
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:44:1] | passed | 0.00275 seconds |
|
306
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:45:1] | passed | 0.00228 seconds |
|
307
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:46:1] | passed | 0.00219 seconds |
|
308
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:47:1] | passed | 0.00242 seconds |
|
309
|
+
./spec/unit/equality_matchers/main_spec.rb[1:1:48:1] | passed | 0.00405 seconds |
|
310
|
+
./spec/unit/object_inspection_spec.rb[1:1:1:1:1] | passed | 0.00071 seconds |
|
311
|
+
./spec/unit/object_inspection_spec.rb[1:1:1:2:1] | passed | 0.00077 seconds |
|
312
|
+
./spec/unit/object_inspection_spec.rb[1:1:2:1:1] | passed | 0.00086 seconds |
|
313
|
+
./spec/unit/object_inspection_spec.rb[1:1:2:2:1] | passed | 0.00079 seconds |
|
314
|
+
./spec/unit/object_inspection_spec.rb[1:1:3:1:1] | passed | 0.00088 seconds |
|
315
|
+
./spec/unit/object_inspection_spec.rb[1:1:3:2:1] | passed | 0.00146 seconds |
|
316
|
+
./spec/unit/object_inspection_spec.rb[1:1:4:1:1] | passed | 0.0007 seconds |
|
317
|
+
./spec/unit/object_inspection_spec.rb[1:1:4:2:1] | passed | 0.00098 seconds |
|
318
|
+
./spec/unit/object_inspection_spec.rb[1:1:5:1:1] | passed | 0.00076 seconds |
|
319
|
+
./spec/unit/object_inspection_spec.rb[1:1:5:2:1] | passed | 0.00091 seconds |
|
320
|
+
./spec/unit/object_inspection_spec.rb[1:1:6:1:1] | passed | 0.00068 seconds |
|
321
|
+
./spec/unit/object_inspection_spec.rb[1:1:6:2:1] | passed | 0.00081 seconds |
|
322
|
+
./spec/unit/object_inspection_spec.rb[1:1:7:1:1] | passed | 0.00065 seconds |
|
323
|
+
./spec/unit/object_inspection_spec.rb[1:1:7:2:1] | passed | 0.00084 seconds |
|
324
|
+
./spec/unit/object_inspection_spec.rb[1:1:8:1:1:1] | passed | 0.00084 seconds |
|
325
|
+
./spec/unit/object_inspection_spec.rb[1:1:8:1:2:1] | passed | 0.0012 seconds |
|
326
|
+
./spec/unit/object_inspection_spec.rb[1:1:8:2:1:1] | passed | 0.00676 seconds |
|
327
|
+
./spec/unit/object_inspection_spec.rb[1:1:8:2:2:1] | passed | 0.00146 seconds |
|
328
|
+
./spec/unit/object_inspection_spec.rb[1:1:9:1:1:1] | passed | 0.00136 seconds |
|
329
|
+
./spec/unit/object_inspection_spec.rb[1:1:9:1:2:1] | passed | 0.00546 seconds |
|
330
|
+
./spec/unit/object_inspection_spec.rb[1:1:9:2:1:1] | passed | 0.00171 seconds |
|
331
|
+
./spec/unit/object_inspection_spec.rb[1:1:9:2:2:1] | passed | 0.00387 seconds |
|
332
|
+
./spec/unit/object_inspection_spec.rb[1:1:9:3:1:1] | passed | 0.00084 seconds |
|
333
|
+
./spec/unit/object_inspection_spec.rb[1:1:9:3:2:1] | passed | 0.00096 seconds |
|
334
|
+
./spec/unit/object_inspection_spec.rb[1:1:10:1:1:1:1] | passed | 0.00249 seconds |
|
335
|
+
./spec/unit/object_inspection_spec.rb[1:1:10:1:1:2:1] | passed | 0.0016 seconds |
|
336
|
+
./spec/unit/object_inspection_spec.rb[1:1:10:1:2:1:1] | passed | 0.0016 seconds |
|
337
|
+
./spec/unit/object_inspection_spec.rb[1:1:10:1:2:2:1] | passed | 0.00203 seconds |
|
338
|
+
./spec/unit/object_inspection_spec.rb[1:1:10:2:1:1] | passed | 0.0018 seconds |
|
339
|
+
./spec/unit/object_inspection_spec.rb[1:1:10:2:2:1] | passed | 0.00898 seconds |
|
340
|
+
./spec/unit/object_inspection_spec.rb[1:1:10:3:1:1] | passed | 0.00104 seconds |
|
341
|
+
./spec/unit/object_inspection_spec.rb[1:1:10:3:2:1] | passed | 0.00272 seconds |
|
342
|
+
./spec/unit/object_inspection_spec.rb[1:1:11:1:1] | passed | 0.00086 seconds |
|
343
|
+
./spec/unit/object_inspection_spec.rb[1:1:11:2:1] | passed | 0.00081 seconds |
|
344
|
+
./spec/unit/object_inspection_spec.rb[1:1:12:1:1:1] | passed | 0.00093 seconds |
|
345
|
+
./spec/unit/object_inspection_spec.rb[1:1:12:1:2:1] | passed | 0.00156 seconds |
|
346
|
+
./spec/unit/object_inspection_spec.rb[1:1:12:2:1:1] | passed | 0.00152 seconds |
|
347
|
+
./spec/unit/object_inspection_spec.rb[1:1:12:2:2:1] | passed | 0.02017 seconds |
|
348
|
+
./spec/unit/object_inspection_spec.rb[1:1:13:1:1:1] | passed | 0.00104 seconds |
|
349
|
+
./spec/unit/object_inspection_spec.rb[1:1:13:1:2:1] | passed | 0.00165 seconds |
|
350
|
+
./spec/unit/object_inspection_spec.rb[1:1:13:2:1:1] | passed | 0.00334 seconds |
|
351
|
+
./spec/unit/object_inspection_spec.rb[1:1:13:2:2:1] | passed | 0.00686 seconds |
|
352
|
+
./spec/unit/object_inspection_spec.rb[1:1:13:3:1:1] | passed | 0.00083 seconds |
|
353
|
+
./spec/unit/object_inspection_spec.rb[1:1:13:3:2:1] | passed | 0.00119 seconds |
|
354
|
+
./spec/unit/object_inspection_spec.rb[1:1:14:1:1] | passed | 0.00378 seconds |
|
355
|
+
./spec/unit/object_inspection_spec.rb[1:1:14:2:1] | passed | 0.02134 seconds |
|
356
|
+
./spec/unit/object_inspection_spec.rb[1:1:15:1:1] | passed | 0.00104 seconds |
|
357
|
+
./spec/unit/object_inspection_spec.rb[1:1:15:2:1] | passed | 0.00188 seconds |
|
358
|
+
./spec/unit/rspec/matchers/be_compared_to_spec.rb[1:1:1:1] | passed | 0.00101 seconds |
|
359
|
+
./spec/unit/rspec/matchers/be_compared_to_spec.rb[1:1:2:1] | passed | 0.0009 seconds |
|
360
|
+
./spec/unit/rspec/matchers/be_compared_to_spec.rb[1:1:3:1] | passed | 0.00172 seconds |
|
361
|
+
./spec/unit/rspec/matchers/be_compared_to_spec.rb[1:1:4:1] | passed | 0.00132 seconds |
|
362
|
+
./spec/unit/rspec/matchers/be_compared_to_spec.rb[1:1:5:1] | passed | 0.0012 seconds |
|
363
|
+
./spec/unit/rspec/matchers/be_compared_to_spec.rb[1:1:6:1] | passed | 0.00105 seconds |
|
364
|
+
./spec/unit/rspec/matchers/be_compared_to_spec.rb[1:1:7:1] | passed | 0.00083 seconds |
|
365
|
+
./spec/unit/rspec/matchers/be_falsey_spec.rb[1:1:1] | passed | 0.01504 seconds |
|
366
|
+
./spec/unit/rspec/matchers/be_nil_spec.rb[1:1:1] | passed | 0.00235 seconds |
|
367
|
+
./spec/unit/rspec/matchers/be_predicate_spec.rb[1:1:1] | passed | 0.00197 seconds |
|
368
|
+
./spec/unit/rspec/matchers/be_predicate_spec.rb[2:1:1] | passed | 0.00084 seconds |
|
369
|
+
./spec/unit/rspec/matchers/be_predicate_spec.rb[3:1:1] | passed | 0.00142 seconds |
|
370
|
+
./spec/unit/rspec/matchers/be_spec.rb[1:1:1:1] | passed | 0.0066 seconds |
|
371
|
+
./spec/unit/rspec/matchers/be_spec.rb[1:1:2:1] | passed | 0.002 seconds |
|
372
|
+
./spec/unit/rspec/matchers/be_truthy_spec.rb[1:1:1] | passed | 0.00078 seconds |
|
373
|
+
./spec/unit/rspec/matchers/contain_exactly_spec.rb[1:1:1] | passed | 0.02271 seconds |
|
374
|
+
./spec/unit/rspec/matchers/eq_spec.rb[1:1:1] | passed | 0.00107 seconds |
|
375
|
+
./spec/unit/rspec/matchers/have_attributes_spec.rb[1:1:1] | passed | 0.00164 seconds |
|
376
|
+
./spec/unit/rspec/matchers/have_predicate_spec.rb[1:1:1:1] | passed | 0.00132 seconds |
|
377
|
+
./spec/unit/rspec/matchers/have_predicate_spec.rb[1:1:2:1] | passed | 0.00108 seconds |
|
378
|
+
./spec/unit/rspec/matchers/include_spec.rb[1:1:1:1] | passed | 0.00151 seconds |
|
379
|
+
./spec/unit/rspec/matchers/include_spec.rb[1:1:2:1] | passed | 0.00119 seconds |
|
380
|
+
./spec/unit/rspec/matchers/match_array_spec.rb[1:1:1] | passed | 0.00201 seconds |
|
381
|
+
./spec/unit/rspec/matchers/match_spec.rb[1:1:1] | passed | 0.01226 seconds |
|
382
|
+
./spec/unit/rspec/matchers/raise_error_spec.rb[1:1:1:1] | passed | 0.00102 seconds |
|
383
|
+
./spec/unit/rspec/matchers/raise_error_spec.rb[1:1:2:1] | passed | 0.00201 seconds |
|
384
|
+
./spec/unit/rspec/matchers/raise_error_spec.rb[1:1:3:1] | passed | 0.00089 seconds |
|
385
|
+
./spec/unit/rspec/matchers/raise_error_spec.rb[1:1:4:1] | passed | 0.00119 seconds |
|
386
|
+
./spec/unit/rspec/matchers/raise_error_spec.rb[1:1:5:1] | passed | 0.00106 seconds |
|
387
|
+
./spec/unit/rspec/matchers/respond_to_spec.rb[1:1:1:1] | passed | 0.00152 seconds |
|
388
|
+
./spec/unit/rspec/matchers/respond_to_spec.rb[1:1:2:1] | passed | 0.0017 seconds |
|
389
|
+
./spec/unit/rspec/matchers/respond_to_spec.rb[1:1:3:1] | passed | 0.00217 seconds |
|
390
|
+
./spec/unit/rspec/matchers/respond_to_spec.rb[1:1:4:1] | passed | 0.00132 seconds |
|
391
|
+
./spec/unit/rspec/matchers/respond_to_spec.rb[1:1:5:1] | passed | 0.00122 seconds |
|
392
|
+
./spec/unit/rspec/matchers/respond_to_spec.rb[1:1:6:1] | passed | 0.00316 seconds |
|
393
|
+
./spec/unit/rspec/matchers/respond_to_spec.rb[1:1:7:1] | passed | 0.00384 seconds |
|