super_diff 0.5.1 → 0.6.2

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.
Files changed (60) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +49 -22
  3. data/lib/super_diff.rb +25 -7
  4. data/lib/super_diff/colorized_document_extensions.rb +4 -4
  5. data/lib/super_diff/configuration.rb +32 -22
  6. data/lib/super_diff/csi.rb +2 -1
  7. data/lib/super_diff/diff_formatters/collection.rb +2 -2
  8. data/lib/super_diff/diff_formatters/multiline_string.rb +4 -4
  9. data/lib/super_diff/equality_matchers/array.rb +4 -4
  10. data/lib/super_diff/equality_matchers/default.rb +4 -4
  11. data/lib/super_diff/equality_matchers/hash.rb +4 -4
  12. data/lib/super_diff/equality_matchers/multiline_string.rb +4 -4
  13. data/lib/super_diff/equality_matchers/primitive.rb +4 -4
  14. data/lib/super_diff/equality_matchers/singleline_string.rb +4 -4
  15. data/lib/super_diff/gem_version.rb +45 -0
  16. data/lib/super_diff/object_inspection.rb +0 -8
  17. data/lib/super_diff/object_inspection/nodes/inspection.rb +1 -1
  18. data/lib/super_diff/operation_trees/base.rb +2 -0
  19. data/lib/super_diff/recursion_guard.rb +2 -0
  20. data/lib/super_diff/rspec.rb +7 -0
  21. data/lib/super_diff/rspec/matcher_text_builders/base.rb +7 -7
  22. data/lib/super_diff/rspec/matcher_text_builders/be_predicate.rb +6 -6
  23. data/lib/super_diff/rspec/matcher_text_builders/contain_exactly.rb +1 -1
  24. data/lib/super_diff/rspec/matcher_text_builders/have_predicate.rb +4 -4
  25. data/lib/super_diff/rspec/matcher_text_builders/raise_error.rb +1 -1
  26. data/lib/super_diff/rspec/matcher_text_builders/respond_to.rb +5 -5
  27. data/lib/super_diff/rspec/monkey_patches.rb +353 -306
  28. data/lib/super_diff/rspec/operation_tree_builders/collection_containing_exactly.rb +12 -1
  29. data/lib/super_diff/version.rb +1 -1
  30. data/spec/combustion/Gemfile.lock +173 -0
  31. data/spec/examples.txt +406 -5
  32. data/spec/integration/rspec/be_falsey_matcher_spec.rb +10 -10
  33. data/spec/integration/rspec/be_matcher_spec.rb +100 -100
  34. data/spec/integration/rspec/be_nil_matcher_spec.rb +10 -10
  35. data/spec/integration/rspec/be_predicate_matcher_spec.rb +103 -103
  36. data/spec/integration/rspec/be_truthy_matcher_spec.rb +10 -10
  37. data/spec/integration/rspec/contain_exactly_matcher_spec.rb +107 -107
  38. data/spec/integration/rspec/eq_matcher_spec.rb +230 -230
  39. data/spec/integration/rspec/have_attributes_matcher_spec.rb +129 -129
  40. data/spec/integration/rspec/have_predicate_matcher_spec.rb +65 -65
  41. data/spec/integration/rspec/include_matcher_spec.rb +73 -73
  42. data/spec/integration/rspec/match_array_matcher_spec.rb +149 -107
  43. data/spec/integration/rspec/match_matcher_spec.rb +274 -274
  44. data/spec/integration/rspec/raise_error_matcher_spec.rb +86 -86
  45. data/spec/integration/rspec/respond_to_matcher_spec.rb +240 -240
  46. data/spec/integration/rspec/third_party_matcher_spec.rb +8 -8
  47. data/spec/integration/rspec/unhandled_errors_spec.rb +5 -5
  48. data/spec/spec_helper.rb +30 -13
  49. data/spec/support/integration/helpers.rb +6 -2
  50. data/spec/support/integration/matchers/produce_output_when_run_matcher.rb +1 -1
  51. data/spec/support/integration/test_programs/base.rb +2 -0
  52. data/spec/support/integration/test_programs/rspec_active_record.rb +1 -1
  53. data/spec/support/integration/test_programs/rspec_active_support.rb +17 -0
  54. data/spec/support/integration/test_programs/rspec_rails.rb +1 -1
  55. data/spec/support/shared_examples/active_record.rb +108 -108
  56. data/spec/support/shared_examples/hash_with_indifferent_access.rb +196 -232
  57. data/spec/unit/equality_matchers/main_spec.rb +403 -403
  58. data/spec/unit/{object_inspection_spec.rb → super_diff_spec.rb} +136 -76
  59. data/super_diff.gemspec +2 -1
  60. metadata +15 -6
@@ -17,10 +17,16 @@ module SuperDiff
17
17
  def unary_operations
18
18
  operations = []
19
19
 
20
- (0...actual.length).each do |index|
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
@@ -1,3 +1,3 @@
1
1
  module SuperDiff
2
- VERSION = "0.5.1".freeze
2
+ VERSION = "0.6.2".freeze
3
3
  end
@@ -0,0 +1,173 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ actioncable (6.1.2.1)
5
+ actionpack (= 6.1.2.1)
6
+ activesupport (= 6.1.2.1)
7
+ nio4r (~> 2.0)
8
+ websocket-driver (>= 0.6.1)
9
+ actionmailbox (6.1.2.1)
10
+ actionpack (= 6.1.2.1)
11
+ activejob (= 6.1.2.1)
12
+ activerecord (= 6.1.2.1)
13
+ activestorage (= 6.1.2.1)
14
+ activesupport (= 6.1.2.1)
15
+ mail (>= 2.7.1)
16
+ actionmailer (6.1.2.1)
17
+ actionpack (= 6.1.2.1)
18
+ actionview (= 6.1.2.1)
19
+ activejob (= 6.1.2.1)
20
+ activesupport (= 6.1.2.1)
21
+ mail (~> 2.5, >= 2.5.4)
22
+ rails-dom-testing (~> 2.0)
23
+ actionpack (6.1.2.1)
24
+ actionview (= 6.1.2.1)
25
+ activesupport (= 6.1.2.1)
26
+ rack (~> 2.0, >= 2.0.9)
27
+ rack-test (>= 0.6.3)
28
+ rails-dom-testing (~> 2.0)
29
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
30
+ actiontext (6.1.2.1)
31
+ actionpack (= 6.1.2.1)
32
+ activerecord (= 6.1.2.1)
33
+ activestorage (= 6.1.2.1)
34
+ activesupport (= 6.1.2.1)
35
+ nokogiri (>= 1.8.5)
36
+ actionview (6.1.2.1)
37
+ activesupport (= 6.1.2.1)
38
+ builder (~> 3.1)
39
+ erubi (~> 1.4)
40
+ rails-dom-testing (~> 2.0)
41
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
42
+ activejob (6.1.2.1)
43
+ activesupport (= 6.1.2.1)
44
+ globalid (>= 0.3.6)
45
+ activemodel (6.1.2.1)
46
+ activesupport (= 6.1.2.1)
47
+ activerecord (6.1.2.1)
48
+ activemodel (= 6.1.2.1)
49
+ activesupport (= 6.1.2.1)
50
+ activestorage (6.1.2.1)
51
+ actionpack (= 6.1.2.1)
52
+ activejob (= 6.1.2.1)
53
+ activerecord (= 6.1.2.1)
54
+ activesupport (= 6.1.2.1)
55
+ marcel (~> 0.3.1)
56
+ mimemagic (~> 0.3.2)
57
+ activesupport (6.1.2.1)
58
+ concurrent-ruby (~> 1.0, >= 1.0.2)
59
+ i18n (>= 1.6, < 2)
60
+ minitest (>= 5.1)
61
+ tzinfo (~> 2.0)
62
+ zeitwerk (~> 2.3)
63
+ attr_extras (6.2.4)
64
+ builder (3.2.4)
65
+ combustion (1.3.1)
66
+ activesupport (>= 3.0.0)
67
+ railties (>= 3.0.0)
68
+ thor (>= 0.14.6)
69
+ concurrent-ruby (1.1.8)
70
+ crass (1.0.6)
71
+ diff-lcs (1.4.4)
72
+ erubi (1.10.0)
73
+ globalid (0.4.2)
74
+ activesupport (>= 4.2.0)
75
+ i18n (1.8.8)
76
+ concurrent-ruby (~> 1.0)
77
+ loofah (2.9.0)
78
+ crass (~> 1.0.2)
79
+ nokogiri (>= 1.5.9)
80
+ mail (2.7.1)
81
+ mini_mime (>= 0.1.1)
82
+ marcel (0.3.3)
83
+ mimemagic (~> 0.3.2)
84
+ method_source (1.0.0)
85
+ mimemagic (0.3.5)
86
+ mini_mime (1.0.2)
87
+ mini_portile2 (2.5.0)
88
+ minitest (5.14.3)
89
+ nio4r (2.5.5)
90
+ nokogiri (1.11.1)
91
+ mini_portile2 (~> 2.5.0)
92
+ racc (~> 1.4)
93
+ patience_diff (1.1.0)
94
+ trollop (~> 1.16)
95
+ racc (1.5.2)
96
+ rack (2.2.3)
97
+ rack-test (1.1.0)
98
+ rack (>= 1.0, < 3)
99
+ rails (6.1.2.1)
100
+ actioncable (= 6.1.2.1)
101
+ actionmailbox (= 6.1.2.1)
102
+ actionmailer (= 6.1.2.1)
103
+ actionpack (= 6.1.2.1)
104
+ actiontext (= 6.1.2.1)
105
+ actionview (= 6.1.2.1)
106
+ activejob (= 6.1.2.1)
107
+ activemodel (= 6.1.2.1)
108
+ activerecord (= 6.1.2.1)
109
+ activestorage (= 6.1.2.1)
110
+ activesupport (= 6.1.2.1)
111
+ bundler (>= 1.15.0)
112
+ railties (= 6.1.2.1)
113
+ sprockets-rails (>= 2.0.0)
114
+ rails-dom-testing (2.0.3)
115
+ activesupport (>= 4.2.0)
116
+ nokogiri (>= 1.6)
117
+ rails-html-sanitizer (1.3.0)
118
+ loofah (~> 2.3)
119
+ railties (6.1.2.1)
120
+ actionpack (= 6.1.2.1)
121
+ activesupport (= 6.1.2.1)
122
+ method_source
123
+ rake (>= 0.8.7)
124
+ thor (~> 1.0)
125
+ rake (13.0.3)
126
+ rspec-core (3.10.1)
127
+ rspec-support (~> 3.10.0)
128
+ rspec-expectations (3.10.1)
129
+ diff-lcs (>= 1.2.0, < 2.0)
130
+ rspec-support (~> 3.10.0)
131
+ rspec-mocks (3.10.2)
132
+ diff-lcs (>= 1.2.0, < 2.0)
133
+ rspec-support (~> 3.10.0)
134
+ rspec-rails (4.0.2)
135
+ actionpack (>= 4.2)
136
+ activesupport (>= 4.2)
137
+ railties (>= 4.2)
138
+ rspec-core (~> 3.10)
139
+ rspec-expectations (~> 3.10)
140
+ rspec-mocks (~> 3.10)
141
+ rspec-support (~> 3.10)
142
+ rspec-support (3.10.2)
143
+ sprockets (4.0.2)
144
+ concurrent-ruby (~> 1.0)
145
+ rack (> 1, < 3)
146
+ sprockets-rails (3.2.2)
147
+ actionpack (>= 4.0)
148
+ activesupport (>= 4.0)
149
+ sprockets (>= 3.0.0)
150
+ super_diff (0.5.3)
151
+ attr_extras (>= 6.2.4)
152
+ diff-lcs
153
+ patience_diff
154
+ thor (1.1.0)
155
+ trollop (1.16.2)
156
+ tzinfo (2.0.4)
157
+ concurrent-ruby (~> 1.0)
158
+ websocket-driver (0.7.3)
159
+ websocket-extensions (>= 0.1.0)
160
+ websocket-extensions (0.1.5)
161
+ zeitwerk (2.4.2)
162
+
163
+ PLATFORMS
164
+ ruby
165
+
166
+ DEPENDENCIES
167
+ combustion
168
+ rails
169
+ rspec-rails
170
+ super_diff (= 0.5.3)
171
+
172
+ BUNDLED WITH
173
+ 2.1.4
data/spec/examples.txt CHANGED
@@ -1,5 +1,406 @@
1
- example_id | status | run_time |
2
- ---------------------------------------------------------- | ------ | -------------- |
3
- ./spec/integration/rspec/unhandled_errors_spec.rb[1:1:1:1] | passed | 1.28 seconds |
4
- ./spec/integration/rspec/unhandled_errors_spec.rb[1:1:2:1] | passed | 1.31 seconds |
5
- ./spec/integration/rspec/unhandled_errors_spec.rb[1:2:1] | failed | 0.7241 seconds |
1
+ example_id | status | run_time |
2
+ ---------------------------------------------------------------------------- | ------ | --------------- |
3
+ ./spec/integration/rails/active_record_spec.rb[1:1:1:1:1] | failed | 1.45 seconds |
4
+ ./spec/integration/rails/active_record_spec.rb[1:1:1:2:1] | failed | 1.5 seconds |
5
+ ./spec/integration/rails/active_record_spec.rb[1:1:1:3:1] | failed | 1.43 seconds |
6
+ ./spec/integration/rails/active_record_spec.rb[1:1:1:4:1] | failed | 1.45 seconds |
7
+ ./spec/integration/rails/active_record_spec.rb[1:1:1:5:1] | failed | 1.46 seconds |
8
+ ./spec/integration/rails/active_record_spec.rb[1:1:1:6:1] | failed | 1.46 seconds |
9
+ ./spec/integration/rails/active_record_spec.rb[1:1:2:1:1] | failed | 1.53 seconds |
10
+ ./spec/integration/rails/active_record_spec.rb[1:2:1:1:1] | failed | 1.45 seconds |
11
+ ./spec/integration/rails/active_record_spec.rb[1:2:1:2:1] | failed | 1.46 seconds |
12
+ ./spec/integration/rails/active_record_spec.rb[1:2:1:3:1] | failed | 1.54 seconds |
13
+ ./spec/integration/rails/active_record_spec.rb[1:2:1:4:1] | failed | 1.44 seconds |
14
+ ./spec/integration/rails/active_record_spec.rb[1:2:1:5:1] | failed | 1.45 seconds |
15
+ ./spec/integration/rails/active_record_spec.rb[1:2:1:6:1] | failed | 1.58 seconds |
16
+ ./spec/integration/rails/active_record_spec.rb[1:2:2:1:1] | failed | 1.47 seconds |
17
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:1:1:1:1:1] | failed | 1.4 seconds |
18
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:1:1:1:2:1] | failed | 1.4 seconds |
19
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:1:2:1:1:1] | failed | 1.4 seconds |
20
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:1:2:1:2:1] | failed | 1.38 seconds |
21
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:1:2:2:1:1] | failed | 1.4 seconds |
22
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:1:2:2:2:1] | failed | 1.4 seconds |
23
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:2:1:1:1:1] | failed | 1.39 seconds |
24
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:2:1:1:2:1] | failed | 1.4 seconds |
25
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:2:2:1:1:1] | failed | 1.4 seconds |
26
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:2:2:1:2:1] | failed | 1.4 seconds |
27
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:2:2:2:1:1] | failed | 1.39 seconds |
28
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:2:2:2:2:1] | failed | 1.4 seconds |
29
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:1:1:1:1:1] | failed | 1.08 seconds |
30
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:1:1:1:2:1] | failed | 1.09 seconds |
31
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:1:2:1:1:1] | failed | 1.08 seconds |
32
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:1:2:1:2:1] | failed | 1.06 seconds |
33
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:1:2:2:1:1] | failed | 1.16 seconds |
34
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:1:2:2:2:1] | failed | 1.15 seconds |
35
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:2:1:1:1:1] | failed | 1.09 seconds |
36
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:2:1:1:2:1] | failed | 1.08 seconds |
37
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:2:2:1:1:1] | failed | 1.09 seconds |
38
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:2:2:1:2:1] | failed | 1.08 seconds |
39
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:2:2:2:1:1] | failed | 1.06 seconds |
40
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:2:2:2:2:1] | failed | 1.07 seconds |
41
+ ./spec/integration/rspec/be_falsey_matcher_spec.rb[1:1] | failed | 1.11 seconds |
42
+ ./spec/integration/rspec/be_falsey_matcher_spec.rb[1:2] | failed | 1.32 seconds |
43
+ ./spec/integration/rspec/be_matcher_spec.rb[1:1:1:1] | failed | 1.28 seconds |
44
+ ./spec/integration/rspec/be_matcher_spec.rb[1:1:1:2] | failed | 1.13 seconds |
45
+ ./spec/integration/rspec/be_matcher_spec.rb[1:1:2:1] | failed | 1.13 seconds |
46
+ ./spec/integration/rspec/be_matcher_spec.rb[1:1:2:2] | failed | 1.16 seconds |
47
+ ./spec/integration/rspec/be_matcher_spec.rb[1:2:1] | failed | 1.12 seconds |
48
+ ./spec/integration/rspec/be_matcher_spec.rb[1:2:2] | failed | 1.13 seconds |
49
+ ./spec/integration/rspec/be_matcher_spec.rb[1:3:1] | failed | 1.14 seconds |
50
+ ./spec/integration/rspec/be_matcher_spec.rb[1:3:2] | failed | 1.2 seconds |
51
+ ./spec/integration/rspec/be_matcher_spec.rb[1:4:1] | failed | 1.17 seconds |
52
+ ./spec/integration/rspec/be_matcher_spec.rb[1:4:2] | failed | 1.2 seconds |
53
+ ./spec/integration/rspec/be_matcher_spec.rb[1:5:1] | failed | 1.15 seconds |
54
+ ./spec/integration/rspec/be_matcher_spec.rb[1:5:2] | failed | 1.09 seconds |
55
+ ./spec/integration/rspec/be_matcher_spec.rb[1:6:1] | failed | 1.1 seconds |
56
+ ./spec/integration/rspec/be_matcher_spec.rb[1:6:2] | failed | 1.14 seconds |
57
+ ./spec/integration/rspec/be_matcher_spec.rb[1:7:1] | failed | 1.12 seconds |
58
+ ./spec/integration/rspec/be_matcher_spec.rb[1:7:2] | failed | 1.11 seconds |
59
+ ./spec/integration/rspec/be_matcher_spec.rb[1:8:1] | failed | 1.11 seconds |
60
+ ./spec/integration/rspec/be_matcher_spec.rb[1:8:2] | failed | 1.1 seconds |
61
+ ./spec/integration/rspec/be_matcher_spec.rb[1:9:1] | failed | 1.09 seconds |
62
+ ./spec/integration/rspec/be_matcher_spec.rb[1:9:2] | failed | 1.23 seconds |
63
+ ./spec/integration/rspec/be_nil_matcher_spec.rb[1:1] | failed | 1.1 seconds |
64
+ ./spec/integration/rspec/be_nil_matcher_spec.rb[1:2] | failed | 1.09 seconds |
65
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:1:1:1] | failed | 1.2 seconds |
66
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:1:2:1] | failed | 1.26 seconds |
67
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:1:1:1] | failed | 1.31 seconds |
68
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:1:2:1] | failed | 1.21 seconds |
69
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:1:1:1:1] | failed | 1.04 seconds |
70
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:1:1:2:1] | failed | 1.31 seconds |
71
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:1:2:1] | failed | 1.09 seconds |
72
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:1:3:1:1:1] | failed | 1.05 seconds |
73
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:1:3:1:2:1] | failed | 1.05 seconds |
74
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:1:3:2:1:1] | failed | 1.14 seconds |
75
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:1:3:2:2:1] | failed | 1.13 seconds |
76
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:2:1:1] | failed | 1.23 seconds |
77
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:2:2:1] | failed | 1.26 seconds |
78
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:1:1:1] | failed | 1.1 seconds |
79
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:1:2:1] | failed | 1.19 seconds |
80
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:1:1:1] | failed | 1.1 seconds |
81
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:1:2:1] | failed | 1.19 seconds |
82
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:1:1:1:1] | failed | 1.27 seconds |
83
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:1:1:2:1] | failed | 1.19 seconds |
84
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:1:2:1] | failed | 1.49 seconds |
85
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:1:3:1:1:1] | failed | 1.39 seconds |
86
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:1:3:1:2:1] | failed | 1.27 seconds |
87
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:1:3:2:1:1] | failed | 1.5 seconds |
88
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:1:3:2:2:1] | failed | 1.44 seconds |
89
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:2:1:1] | failed | 1.2 seconds |
90
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:2:2:1] | failed | 1.23 seconds |
91
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:1:1:1] | failed | 1.14 seconds |
92
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:1:2:1] | failed | 1.16 seconds |
93
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:1:1:1] | failed | 1.09 seconds |
94
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:1:2:1] | failed | 1.11 seconds |
95
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:1:1:1:1] | failed | 1.1 seconds |
96
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:1:1:2:1] | failed | 1.12 seconds |
97
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:1:2:1] | failed | 1.16 seconds |
98
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:1:3:1:1:1] | failed | 1.1 seconds |
99
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:1:3:1:2:1] | failed | 1.1 seconds |
100
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:1:3:2:1:1] | failed | 1.1 seconds |
101
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:1:3:2:2:1] | failed | 1.09 seconds |
102
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:2:1:1] | failed | 1.1 seconds |
103
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:2:2:1] | failed | 1.12 seconds |
104
+ ./spec/integration/rspec/be_truthy_matcher_spec.rb[1:1] | failed | 1.06 seconds |
105
+ ./spec/integration/rspec/be_truthy_matcher_spec.rb[1:2] | failed | 1.17 seconds |
106
+ ./spec/integration/rspec/contain_exactly_matcher_spec.rb[1:1:1] | failed | 1.13 seconds |
107
+ ./spec/integration/rspec/contain_exactly_matcher_spec.rb[1:1:2] | failed | 1.09 seconds |
108
+ ./spec/integration/rspec/contain_exactly_matcher_spec.rb[1:2:1:1] | failed | 1.37 seconds |
109
+ ./spec/integration/rspec/contain_exactly_matcher_spec.rb[1:2:1:2] | failed | 1.14 seconds |
110
+ ./spec/integration/rspec/contain_exactly_matcher_spec.rb[1:2:2:1] | failed | 1.2 seconds |
111
+ ./spec/integration/rspec/contain_exactly_matcher_spec.rb[1:2:2:2] | failed | 1.25 seconds |
112
+ ./spec/integration/rspec/contain_exactly_matcher_spec.rb[1:2:3:1] | failed | 1.46 seconds |
113
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:1:1] | failed | 1.09 seconds |
114
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:1:2] | failed | 1.15 seconds |
115
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:2:1] | failed | 1.1 seconds |
116
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:2:2] | failed | 1.09 seconds |
117
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:3:1] | failed | 1.09 seconds |
118
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:3:2] | failed | 1.17 seconds |
119
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:4:1] | failed | 1.11 seconds |
120
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:4:2] | failed | 1.1 seconds |
121
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:5:1] | failed | 1.49 seconds |
122
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:6:1] | failed | 1.1 seconds |
123
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:7:1] | failed | 1.11 seconds |
124
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:8:1] | failed | 1.11 seconds |
125
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:8:2] | failed | 1.17 seconds |
126
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:9:1] | failed | 1.12 seconds |
127
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:9:2] | failed | 1.11 seconds |
128
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:10:1] | failed | 1.19 seconds |
129
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:10:2] | failed | 1.1 seconds |
130
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:11:1] | failed | 1.18 seconds |
131
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:11:2] | failed | 1.15 seconds |
132
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:12:1] | failed | 1.1 seconds |
133
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:12:2] | failed | 1.1 seconds |
134
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:13:1] | failed | 1.11 seconds |
135
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:14:1] | failed | 1.17 seconds |
136
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:15:1] | failed | 1.1 seconds |
137
+ ./spec/integration/rspec/have_attributes_matcher_spec.rb[1:1:1:1:1] | failed | 1.2 seconds |
138
+ ./spec/integration/rspec/have_attributes_matcher_spec.rb[1:1:1:1:2] | failed | 1.3 seconds |
139
+ ./spec/integration/rspec/have_attributes_matcher_spec.rb[1:1:1:2:1] | failed | 1.76 seconds |
140
+ ./spec/integration/rspec/have_attributes_matcher_spec.rb[1:1:2:1:1] | failed | 1.1 seconds |
141
+ ./spec/integration/rspec/have_attributes_matcher_spec.rb[1:1:2:1:2] | failed | 1.09 seconds |
142
+ ./spec/integration/rspec/have_attributes_matcher_spec.rb[1:1:2:2:1] | failed | 1.17 seconds |
143
+ ./spec/integration/rspec/have_attributes_matcher_spec.rb[1:2:1] | failed | 1.6 seconds |
144
+ ./spec/integration/rspec/have_attributes_matcher_spec.rb[1:2:2:1] | failed | 1.52 seconds |
145
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:1:1:1] | failed | 1.13 seconds |
146
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:1:2:1] | failed | 1.15 seconds |
147
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:1:1:1] | failed | 1.67 seconds |
148
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:1:2:1] | failed | 1.27 seconds |
149
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:1:1:1:1] | failed | 1.16 seconds |
150
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:1:1:2:1] | failed | 1.27 seconds |
151
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:1:2:1:1] | failed | 1.27 seconds |
152
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:1:2:2:1] | failed | 1.11 seconds |
153
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:2:1:1:1] | failed | 1.07 seconds |
154
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:2:1:2:1] | failed | 1.23 seconds |
155
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:2:2:1:1] | failed | 1.22 seconds |
156
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:2:2:2:1] | failed | 1.41 seconds |
157
+ ./spec/integration/rspec/include_matcher_spec.rb[1:1:1:1] | failed | 1.15 seconds |
158
+ ./spec/integration/rspec/include_matcher_spec.rb[1:1:1:2] | failed | 1.08 seconds |
159
+ ./spec/integration/rspec/include_matcher_spec.rb[1:1:2:1] | failed | 1.09 seconds |
160
+ ./spec/integration/rspec/include_matcher_spec.rb[1:1:2:2] | failed | 1.06 seconds |
161
+ ./spec/integration/rspec/include_matcher_spec.rb[1:2:1:1] | failed | 1.1 seconds |
162
+ ./spec/integration/rspec/include_matcher_spec.rb[1:2:1:2] | failed | 1.08 seconds |
163
+ ./spec/integration/rspec/include_matcher_spec.rb[1:2:2:1] | failed | 1.08 seconds |
164
+ ./spec/integration/rspec/include_matcher_spec.rb[1:2:2:2] | failed | 1.06 seconds |
165
+ ./spec/integration/rspec/match_array_matcher_spec.rb[1:1:1] | failed | 1.18 seconds |
166
+ ./spec/integration/rspec/match_array_matcher_spec.rb[1:1:2] | failed | 1.19 seconds |
167
+ ./spec/integration/rspec/match_array_matcher_spec.rb[1:2:1:1] | failed | 1.2 seconds |
168
+ ./spec/integration/rspec/match_array_matcher_spec.rb[1:2:1:2] | failed | 1.19 seconds |
169
+ ./spec/integration/rspec/match_array_matcher_spec.rb[1:2:2:1] | failed | 1.24 seconds |
170
+ ./spec/integration/rspec/match_array_matcher_spec.rb[1:2:2:2] | failed | 1.4 seconds |
171
+ ./spec/integration/rspec/match_array_matcher_spec.rb[1:2:3:1] | failed | 1.22 seconds |
172
+ ./spec/integration/rspec/match_array_matcher_spec.rb[1:3:1] | failed | 1.13 seconds |
173
+ ./spec/integration/rspec/match_matcher_spec.rb[1:1:1:1] | failed | 1.19 seconds |
174
+ ./spec/integration/rspec/match_matcher_spec.rb[1:1:1:2] | failed | 1.08 seconds |
175
+ ./spec/integration/rspec/match_matcher_spec.rb[1:1:2:1] | failed | 1.23 seconds |
176
+ ./spec/integration/rspec/match_matcher_spec.rb[1:1:2:2] | failed | 1.21 seconds |
177
+ ./spec/integration/rspec/match_matcher_spec.rb[1:2:1:1] | failed | 1.42 seconds |
178
+ ./spec/integration/rspec/match_matcher_spec.rb[1:2:1:2] | failed | 1.22 seconds |
179
+ ./spec/integration/rspec/match_matcher_spec.rb[1:2:2:1] | failed | 1.14 seconds |
180
+ ./spec/integration/rspec/match_matcher_spec.rb[1:3:1:1] | failed | 1.23 seconds |
181
+ ./spec/integration/rspec/match_matcher_spec.rb[1:3:1:2] | failed | 1.1 seconds |
182
+ ./spec/integration/rspec/match_matcher_spec.rb[1:3:2:1] | failed | 1.07 seconds |
183
+ ./spec/integration/rspec/match_matcher_spec.rb[1:3:2:2] | failed | 1.13 seconds |
184
+ ./spec/integration/rspec/match_matcher_spec.rb[1:4:1:1] | failed | 1.18 seconds |
185
+ ./spec/integration/rspec/match_matcher_spec.rb[1:4:1:2] | failed | 1.09 seconds |
186
+ ./spec/integration/rspec/match_matcher_spec.rb[1:4:2:1] | failed | 1.21 seconds |
187
+ ./spec/integration/rspec/match_matcher_spec.rb[1:5:1:1] | failed | 1.33 seconds |
188
+ ./spec/integration/rspec/match_matcher_spec.rb[1:5:1:2] | failed | 1.26 seconds |
189
+ ./spec/integration/rspec/match_matcher_spec.rb[1:5:2:1] | failed | 1.2 seconds |
190
+ ./spec/integration/rspec/match_matcher_spec.rb[1:5:2:2] | failed | 1.11 seconds |
191
+ ./spec/integration/rspec/match_matcher_spec.rb[1:6:1] | failed | 1.22 seconds |
192
+ ./spec/integration/rspec/match_matcher_spec.rb[1:6:2] | failed | 1.27 seconds |
193
+ ./spec/integration/rspec/match_matcher_spec.rb[1:7:1:1] | failed | 1.07 seconds |
194
+ ./spec/integration/rspec/match_matcher_spec.rb[1:7:1:2] | failed | 1.07 seconds |
195
+ ./spec/integration/rspec/match_matcher_spec.rb[1:7:2:1] | failed | 1.06 seconds |
196
+ ./spec/integration/rspec/match_matcher_spec.rb[1:7:2:2] | failed | 1.08 seconds |
197
+ ./spec/integration/rspec/match_matcher_spec.rb[1:8:1:1] | failed | 1.25 seconds |
198
+ ./spec/integration/rspec/match_matcher_spec.rb[1:8:1:2] | failed | 1.21 seconds |
199
+ ./spec/integration/rspec/match_matcher_spec.rb[1:8:2:1] | failed | 1.1 seconds |
200
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:1:1:1:1:1] | failed | 1.16 seconds |
201
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:1:1:1:2:1] | failed | 1.1 seconds |
202
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:1:1:2:1] | failed | 1.16 seconds |
203
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:1:2:1:1] | failed | 1.15 seconds |
204
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:1:2:2:1] | failed | 1.08 seconds |
205
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:1:1:1:1] | failed | 1.1 seconds |
206
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:1:1:2:1:1] | failed | 1.1 seconds |
207
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:1:1:2:2:1] | failed | 1.16 seconds |
208
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:1:2:1:1] | failed | 1.16 seconds |
209
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:1:2:2:1:1] | failed | 1.16 seconds |
210
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:1:2:2:2:1] | failed | 1.1 seconds |
211
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:2:1:1] | failed | 1.21 seconds |
212
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:2:2:1:1] | failed | 1.11 seconds |
213
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:2:2:2:1] | failed | 1.18 seconds |
214
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:3:1:1:1:1] | failed | 1.1 seconds |
215
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:3:1:1:2:1] | failed | 1.21 seconds |
216
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:3:1:2:1:1] | failed | 1.15 seconds |
217
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:3:1:2:2:1] | failed | 1.1 seconds |
218
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:3:2:1:1] | failed | 1.14 seconds |
219
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:3:2:2:1] | failed | 1.1 seconds |
220
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:1:1:1] | failed | 1.09 seconds |
221
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:1:1:2] | failed | 1.13 seconds |
222
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:1:2:1] | failed | 1.09 seconds |
223
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:1:2:2] | failed | 1.14 seconds |
224
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:2:1:1] | failed | 1.09 seconds |
225
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:2:1:2] | failed | 1.12 seconds |
226
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:2:2:1] | failed | 1.12 seconds |
227
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:2:2:2] | failed | 1.12 seconds |
228
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:3:1:1] | failed | 1.1 seconds |
229
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:3:1:2] | failed | 1.1 seconds |
230
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:3:2:1] | failed | 1.09 seconds |
231
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:3:2:2] | failed | 1.1 seconds |
232
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:4:1:1] | failed | 1.13 seconds |
233
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:4:1:2] | failed | 1.1 seconds |
234
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:4:2:1] | failed | 1.21 seconds |
235
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:4:2:2] | failed | 1.1 seconds |
236
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:5:1:1] | failed | 1.09 seconds |
237
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:5:1:2] | failed | 1.09 seconds |
238
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:5:2:1] | failed | 1.1 seconds |
239
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:5:2:2] | failed | 1.09 seconds |
240
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:6:1] | failed | 1.09 seconds |
241
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:6:2] | failed | 1.09 seconds |
242
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:7:1] | failed | 1.09 seconds |
243
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:7:2] | failed | 1.1 seconds |
244
+ ./spec/integration/rspec/third_party_matcher_spec.rb[1:1:1:1:1] | failed | 1.19 seconds |
245
+ ./spec/integration/rspec/third_party_matcher_spec.rb[1:1:1:2:1:1] | failed | 1.09 seconds |
246
+ ./spec/integration/rspec/third_party_matcher_spec.rb[1:1:1:2:2:1] | failed | 1.09 seconds |
247
+ ./spec/integration/rspec/third_party_matcher_spec.rb[1:1:2:1] | failed | 1.09 seconds |
248
+ ./spec/integration/rspec/third_party_matcher_spec.rb[1:2:1:1:1] | failed | 1.1 seconds |
249
+ ./spec/integration/rspec/third_party_matcher_spec.rb[1:2:1:2:1:1] | failed | 1.09 seconds |
250
+ ./spec/integration/rspec/third_party_matcher_spec.rb[1:2:1:2:2:1] | failed | 1.13 seconds |
251
+ ./spec/integration/rspec/third_party_matcher_spec.rb[1:2:2:1] | failed | 1.09 seconds |
252
+ ./spec/integration/rspec/unhandled_errors_spec.rb[1:1:1:1] | failed | 1.18 seconds |
253
+ ./spec/integration/rspec/unhandled_errors_spec.rb[1:1:2:1] | failed | 1.15 seconds |
254
+ ./spec/integration/rspec/unhandled_errors_spec.rb[1:2:1] | failed | 1.13 seconds |
255
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:1:1] | passed | 0.00059 seconds |
256
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:2:1] | passed | 0.00075 seconds |
257
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:3:1] | passed | 0.00093 seconds |
258
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:4:1] | passed | 0.00093 seconds |
259
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:5:1] | passed | 0.00109 seconds |
260
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:6:1] | passed | 0.00064 seconds |
261
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:7:1] | passed | 0.00082 seconds |
262
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:8:1] | passed | 0.00091 seconds |
263
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:9:1] | passed | 0.00078 seconds |
264
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:10:1] | passed | 0.00099 seconds |
265
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:11:1] | passed | 0.00119 seconds |
266
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:12:1] | passed | 0.00245 seconds |
267
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:13:1] | failed | 0.00255 seconds |
268
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:14:1] | passed | 0.00059 seconds |
269
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:15:1] | passed | 0.00198 seconds |
270
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:16:1] | passed | 0.00157 seconds |
271
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:17:1] | passed | 0.00141 seconds |
272
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:18:1] | passed | 0.00816 seconds |
273
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:19:1] | passed | 0.0012 seconds |
274
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:20:1] | passed | 0.00133 seconds |
275
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:21:1] | passed | 0.00138 seconds |
276
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:22:1] | passed | 0.00123 seconds |
277
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:23:1] | passed | 0.00266 seconds |
278
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:24:1] | passed | 0.00183 seconds |
279
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:25:1] | passed | 0.00291 seconds |
280
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:26:1] | passed | 0.00398 seconds |
281
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:27:1] | passed | 0.00099 seconds |
282
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:28:1] | passed | 0.00149 seconds |
283
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:29:1] | passed | 0.00445 seconds |
284
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:30:1] | passed | 0.00175 seconds |
285
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:31:1] | passed | 0.00141 seconds |
286
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:32:1] | passed | 0.00282 seconds |
287
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:33:1] | passed | 0.00162 seconds |
288
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:34:1] | passed | 0.00136 seconds |
289
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:35:1:1] | passed | 0.00324 seconds |
290
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:35:2:1] | passed | 0.00327 seconds |
291
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:36:1] | passed | 0.00296 seconds |
292
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:37:1] | passed | 0.00211 seconds |
293
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:38:1] | passed | 0.00183 seconds |
294
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:39:1] | passed | 0.00502 seconds |
295
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:40:1] | passed | 0.00064 seconds |
296
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:41:1] | passed | 0.00235 seconds |
297
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:42:1] | passed | 0.00389 seconds |
298
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:43:1] | passed | 0.00222 seconds |
299
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:44:1] | passed | 0.00378 seconds |
300
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:45:1] | passed | 0.00232 seconds |
301
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:46:1] | passed | 0.00243 seconds |
302
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:47:1] | passed | 0.00258 seconds |
303
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:48:1] | passed | 0.00209 seconds |
304
+ ./spec/unit/rspec/matchers/be_compared_to_spec.rb[1:1:1:1] | passed | 0.00133 seconds |
305
+ ./spec/unit/rspec/matchers/be_compared_to_spec.rb[1:1:2:1] | passed | 0.00093 seconds |
306
+ ./spec/unit/rspec/matchers/be_compared_to_spec.rb[1:1:3:1] | passed | 0.0014 seconds |
307
+ ./spec/unit/rspec/matchers/be_compared_to_spec.rb[1:1:4:1] | passed | 0.00096 seconds |
308
+ ./spec/unit/rspec/matchers/be_compared_to_spec.rb[1:1:5:1] | passed | 0.00081 seconds |
309
+ ./spec/unit/rspec/matchers/be_compared_to_spec.rb[1:1:6:1] | passed | 0.00093 seconds |
310
+ ./spec/unit/rspec/matchers/be_compared_to_spec.rb[1:1:7:1] | passed | 0.00075 seconds |
311
+ ./spec/unit/rspec/matchers/be_falsey_spec.rb[1:1:1] | passed | 0.00074 seconds |
312
+ ./spec/unit/rspec/matchers/be_nil_spec.rb[1:1:1] | passed | 0.00132 seconds |
313
+ ./spec/unit/rspec/matchers/be_predicate_spec.rb[1:1:1] | passed | 0.0028 seconds |
314
+ ./spec/unit/rspec/matchers/be_predicate_spec.rb[2:1:1] | passed | 0.00094 seconds |
315
+ ./spec/unit/rspec/matchers/be_predicate_spec.rb[3:1:1] | passed | 0.00123 seconds |
316
+ ./spec/unit/rspec/matchers/be_spec.rb[1:1:1:1] | passed | 0.00093 seconds |
317
+ ./spec/unit/rspec/matchers/be_spec.rb[1:1:2:1] | passed | 0.00098 seconds |
318
+ ./spec/unit/rspec/matchers/be_truthy_spec.rb[1:1:1] | passed | 0.00105 seconds |
319
+ ./spec/unit/rspec/matchers/contain_exactly_spec.rb[1:1:1] | passed | 0.00154 seconds |
320
+ ./spec/unit/rspec/matchers/eq_spec.rb[1:1:1] | passed | 0.00153 seconds |
321
+ ./spec/unit/rspec/matchers/have_attributes_spec.rb[1:1:1] | passed | 0.01 seconds |
322
+ ./spec/unit/rspec/matchers/have_predicate_spec.rb[1:1:1:1] | passed | 0.00143 seconds |
323
+ ./spec/unit/rspec/matchers/have_predicate_spec.rb[1:1:2:1] | passed | 0.00106 seconds |
324
+ ./spec/unit/rspec/matchers/include_spec.rb[1:1:1:1] | passed | 0.00102 seconds |
325
+ ./spec/unit/rspec/matchers/include_spec.rb[1:1:2:1] | passed | 0.00104 seconds |
326
+ ./spec/unit/rspec/matchers/match_array_spec.rb[1:1:1] | passed | 0.0015 seconds |
327
+ ./spec/unit/rspec/matchers/match_spec.rb[1:1:1] | passed | 0.00208 seconds |
328
+ ./spec/unit/rspec/matchers/raise_error_spec.rb[1:1:1:1] | passed | 0.00166 seconds |
329
+ ./spec/unit/rspec/matchers/raise_error_spec.rb[1:1:2:1] | passed | 0.00081 seconds |
330
+ ./spec/unit/rspec/matchers/raise_error_spec.rb[1:1:3:1] | passed | 0.00109 seconds |
331
+ ./spec/unit/rspec/matchers/raise_error_spec.rb[1:1:4:1] | passed | 0.00084 seconds |
332
+ ./spec/unit/rspec/matchers/raise_error_spec.rb[1:1:5:1] | passed | 0.0011 seconds |
333
+ ./spec/unit/rspec/matchers/respond_to_spec.rb[1:1:1:1] | passed | 0.00124 seconds |
334
+ ./spec/unit/rspec/matchers/respond_to_spec.rb[1:1:2:1] | passed | 0.00132 seconds |
335
+ ./spec/unit/rspec/matchers/respond_to_spec.rb[1:1:3:1] | passed | 0.00166 seconds |
336
+ ./spec/unit/rspec/matchers/respond_to_spec.rb[1:1:4:1] | passed | 0.00151 seconds |
337
+ ./spec/unit/rspec/matchers/respond_to_spec.rb[1:1:5:1] | passed | 0.00114 seconds |
338
+ ./spec/unit/rspec/matchers/respond_to_spec.rb[1:1:6:1] | passed | 0.00139 seconds |
339
+ ./spec/unit/rspec/matchers/respond_to_spec.rb[1:1:7:1] | passed | 0.0014 seconds |
340
+ ./spec/unit/super_diff_spec.rb[1:1:1:1:1] | passed | 0.00063 seconds |
341
+ ./spec/unit/super_diff_spec.rb[1:1:1:2:1] | passed | 0.0006 seconds |
342
+ ./spec/unit/super_diff_spec.rb[1:1:2:1:1] | passed | 0.00064 seconds |
343
+ ./spec/unit/super_diff_spec.rb[1:1:2:2:1] | passed | 0.00063 seconds |
344
+ ./spec/unit/super_diff_spec.rb[1:1:3:1:1] | passed | 0.00369 seconds |
345
+ ./spec/unit/super_diff_spec.rb[1:1:3:2:1] | passed | 0.00064 seconds |
346
+ ./spec/unit/super_diff_spec.rb[1:1:4:1:1] | passed | 0.00078 seconds |
347
+ ./spec/unit/super_diff_spec.rb[1:1:4:2:1] | passed | 0.0006 seconds |
348
+ ./spec/unit/super_diff_spec.rb[1:1:5:1:1] | passed | 0.00081 seconds |
349
+ ./spec/unit/super_diff_spec.rb[1:1:5:2:1] | passed | 0.00072 seconds |
350
+ ./spec/unit/super_diff_spec.rb[1:1:6:1:1] | passed | 0.00062 seconds |
351
+ ./spec/unit/super_diff_spec.rb[1:1:6:2:1] | passed | 0.00057 seconds |
352
+ ./spec/unit/super_diff_spec.rb[1:1:7:1] | passed | 0.00094 seconds |
353
+ ./spec/unit/super_diff_spec.rb[1:1:8:1:1] | passed | 0.0007 seconds |
354
+ ./spec/unit/super_diff_spec.rb[1:1:8:2:1] | failed | 0.00234 seconds |
355
+ ./spec/unit/super_diff_spec.rb[1:1:9:1:1:1] | passed | 0.00096 seconds |
356
+ ./spec/unit/super_diff_spec.rb[1:1:9:1:2:1] | passed | 0.00083 seconds |
357
+ ./spec/unit/super_diff_spec.rb[1:1:9:2:1:1] | passed | 0.00088 seconds |
358
+ ./spec/unit/super_diff_spec.rb[1:1:9:2:2:1] | passed | 0.0013 seconds |
359
+ ./spec/unit/super_diff_spec.rb[1:1:9:3:1:1] | passed | 0.00067 seconds |
360
+ ./spec/unit/super_diff_spec.rb[1:1:9:3:2:1] | passed | 0.00074 seconds |
361
+ ./spec/unit/super_diff_spec.rb[1:1:10:1:1:1:1] | passed | 0.0015 seconds |
362
+ ./spec/unit/super_diff_spec.rb[1:1:10:1:1:2:1] | passed | 0.00113 seconds |
363
+ ./spec/unit/super_diff_spec.rb[1:1:10:1:2:1:1] | passed | 0.00098 seconds |
364
+ ./spec/unit/super_diff_spec.rb[1:1:10:1:2:2:1] | passed | 0.00125 seconds |
365
+ ./spec/unit/super_diff_spec.rb[1:1:10:2:1:1] | passed | 0.00148 seconds |
366
+ ./spec/unit/super_diff_spec.rb[1:1:10:2:2:1] | passed | 0.00144 seconds |
367
+ ./spec/unit/super_diff_spec.rb[1:1:10:3:1:1] | passed | 0.0006 seconds |
368
+ ./spec/unit/super_diff_spec.rb[1:1:10:3:2:1] | passed | 0.00064 seconds |
369
+ ./spec/unit/super_diff_spec.rb[1:1:11:1:1] | passed | 0.00061 seconds |
370
+ ./spec/unit/super_diff_spec.rb[1:1:11:2:1] | passed | 0.00065 seconds |
371
+ ./spec/unit/super_diff_spec.rb[1:1:12:1:1:1] | passed | 0.00093 seconds |
372
+ ./spec/unit/super_diff_spec.rb[1:1:12:1:2:1] | passed | 0.00078 seconds |
373
+ ./spec/unit/super_diff_spec.rb[1:1:12:2:1:1] | passed | 0.00135 seconds |
374
+ ./spec/unit/super_diff_spec.rb[1:1:12:2:2:1] | passed | 0.00128 seconds |
375
+ ./spec/unit/super_diff_spec.rb[1:1:13:1:1:1] | passed | 0.00081 seconds |
376
+ ./spec/unit/super_diff_spec.rb[1:1:13:1:2:1] | passed | 0.00088 seconds |
377
+ ./spec/unit/super_diff_spec.rb[1:1:13:2:1:1] | passed | 0.00096 seconds |
378
+ ./spec/unit/super_diff_spec.rb[1:1:13:2:2:1] | passed | 0.00154 seconds |
379
+ ./spec/unit/super_diff_spec.rb[1:1:13:3:1:1] | passed | 0.00061 seconds |
380
+ ./spec/unit/super_diff_spec.rb[1:1:13:3:2:1] | passed | 0.00069 seconds |
381
+ ./spec/unit/super_diff_spec.rb[1:1:14:1:1] | passed | 0.00078 seconds |
382
+ ./spec/unit/super_diff_spec.rb[1:1:14:2:1] | passed | 0.00086 seconds |
383
+ ./spec/unit/super_diff_spec.rb[1:1:15:1:1] | passed | 0.00103 seconds |
384
+ ./spec/unit/super_diff_spec.rb[1:1:15:2:1] | passed | 0.00124 seconds |
385
+ ./spec/unit/super_diff_spec.rb[1:1:16:1:1] | passed | 0.00111 seconds |
386
+ ./spec/unit/super_diff_spec.rb[1:1:16:2:1] | passed | 0.00122 seconds |
387
+ ./spec/unit/super_diff_spec.rb[1:1:17:1:1] | passed | 0.00079 seconds |
388
+ ./spec/unit/super_diff_spec.rb[1:1:17:2:1] | passed | 0.00082 seconds |
389
+ ./spec/unit/super_diff_spec.rb[1:1:18:1:1] | passed | 0.00176 seconds |
390
+ ./spec/unit/super_diff_spec.rb[1:1:18:2:1] | passed | 0.00081 seconds |
391
+ ./spec/unit/super_diff_spec.rb[1:1:19:1:1] | passed | 0.00086 seconds |
392
+ ./spec/unit/super_diff_spec.rb[1:1:19:2:1] | passed | 0.00084 seconds |
393
+ ./spec/unit/super_diff_spec.rb[1:1:20:1:1] | passed | 0.0018 seconds |
394
+ ./spec/unit/super_diff_spec.rb[1:1:20:2:1] | passed | 0.00082 seconds |
395
+ ./spec/unit/super_diff_spec.rb[1:1:21:1:1:1] | passed | 0.00064 seconds |
396
+ ./spec/unit/super_diff_spec.rb[1:1:21:1:2:1] | passed | 0.00071 seconds |
397
+ ./spec/unit/super_diff_spec.rb[1:1:22:1:1] | passed | 0.00109 seconds |
398
+ ./spec/unit/super_diff_spec.rb[1:1:22:2:1] | passed | 0.00143 seconds |
399
+ ./spec/unit/super_diff_spec.rb[1:1:23:1:1] | passed | 0.00279 seconds |
400
+ ./spec/unit/super_diff_spec.rb[1:1:23:2:1] | passed | 0.01404 seconds |
401
+ ./spec/unit/super_diff_spec.rb[1:1:24:1:1] | passed | 0.00096 seconds |
402
+ ./spec/unit/super_diff_spec.rb[1:1:24:2:1] | passed | 0.00104 seconds |
403
+ ./spec/unit/super_diff_spec.rb[1:1:25:1:1] | passed | 0.00234 seconds |
404
+ ./spec/unit/super_diff_spec.rb[1:1:25:2:1] | passed | 0.00306 seconds |
405
+ ./spec/unit/super_diff_spec.rb[1:2:1:1] | passed | 0.00152 seconds |
406
+ ./spec/unit/super_diff_spec.rb[1:2:2:1] | passed | 0.00136 seconds |