super_diff 0.6.2 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: be7fd08d833b19c6a99401a1c7b80c448903c315d198b09e55baf70ee663dcfc
4
- data.tar.gz: ea79d7bb6469e711058b71716c9ce1a23d6353381a8ae876c6bb180a57e78e2a
3
+ metadata.gz: bb09d995aa3a004c723b22f71fc27b9d5a9d3239751b54b7fb14e11c24df1bb1
4
+ data.tar.gz: 2330655f1192952c82c36b70f3acf89e103290532f4ac3093768ba4371316fc0
5
5
  SHA512:
6
- metadata.gz: 75a1258f1d15d4a830a89ad898cefed4d6379d012fd7aa50d61f82672f10d0acacbf32e88177970fe46afa977dbce42c30212194867eefa1a72eb874417a1156
7
- data.tar.gz: eb40c7881a21263fc89c6c2cfd1e54c5277449f98a32fb266bc720c43177772480d9834b61c4614102c236942d46ffcea82bc4e5090ad5f70dfc6d15f1d9e184
6
+ metadata.gz: 7ca49e3d7fd65588e1821133cbdf5f9ec41a23ac8e8bbcdb0650ce39387e73c0919d742868bafa26bdeb6edda1cb6049457e1f454a6b17bbc6f0d90fe53d83d0
7
+ data.tar.gz: 0bfa520cb843bb293a78f6c40f337881d98871454dde777ea4163b8f3092648b40019adc4fffdc8b405b36bc951a3d37fb6f3ac0a77a37cf05f7d7e852189aa7
@@ -6,15 +6,55 @@ module SuperDiff
6
6
  SuperDiff.time_like?(value)
7
7
  end
8
8
 
9
- TIME_FORMAT = "%Y-%m-%d %H:%M:%S.%3N %Z %:z".freeze
10
-
11
9
  protected
12
10
 
13
11
  def inspection_tree
14
12
  InspectionTree.new do
15
13
  add_text do |time|
16
- "#{time.strftime(TIME_FORMAT)} (#{time.class})"
14
+ "#<#{time.class} "
15
+ end
16
+
17
+ when_singleline do
18
+ add_text do |time|
19
+ time.strftime("%Y-%m-%d %H:%M:%S") +
20
+ (time.subsec == 0 ? "" : "+#{time.subsec.inspect}") +
21
+ " " + time.strftime("%:z") +
22
+ (time.zone ? " (#{time.zone})" : "")
23
+ end
24
+ end
25
+
26
+ when_multiline do
27
+ add_text "{"
28
+
29
+ nested do |time|
30
+ add_break " "
31
+
32
+ insert_separated_list(
33
+ [
34
+ :year,
35
+ :month,
36
+ :day,
37
+ :hour,
38
+ :min,
39
+ :sec,
40
+ :subsec,
41
+ :zone,
42
+ :utc_offset
43
+ ],
44
+ separator: ","
45
+ ) do |name|
46
+ add_text name.to_s
47
+ add_text ": "
48
+ add_inspection_of time.public_send(name)
49
+ end
50
+ end
51
+
52
+ add_break
53
+
54
+ add_text "}"
17
55
  end
56
+
57
+ add_text ">"
18
58
  end
19
59
  end
20
60
  end
@@ -1,5 +1,5 @@
1
1
  module SuperDiff
2
2
  module OperationTreeBuilders
3
- DEFAULTS = [Array, Hash, CustomObject].freeze
3
+ DEFAULTS = [Array, Hash, TimeLike, CustomObject].freeze
4
4
  end
5
5
  end
@@ -53,7 +53,7 @@ module SuperDiff
53
53
  ev2, av2 = expected[ek], actual[ek]
54
54
 
55
55
  if (
56
- (!actual.include?(ek) || ev != av2) &&
56
+ (!actual.include?(ek) || ev2 != av2) &&
57
57
  operations.none? { |operation|
58
58
  [:delete, :noop].include?(operation.name) &&
59
59
  operation.key == ek
@@ -15,9 +15,9 @@ module SuperDiff
15
15
  "hour",
16
16
  "min",
17
17
  "sec",
18
- "nsec",
18
+ "subsec",
19
19
  "zone",
20
- "gmt_offset",
20
+ "utc_offset",
21
21
  ]
22
22
 
23
23
  # If timezones are different, also show a normalized timestamp at the
@@ -26,12 +26,22 @@ module SuperDiff
26
26
  value.expecteds.first.is_a?(::Hash)
27
27
  end
28
28
 
29
+ # HINT: `a_hash_including` is an alias of `include` in the rspec-expectations gem.
30
+ # `hash_including` is an argument matcher in the rspec-mocks gem.
31
+ def self.hash_including_something?(value)
32
+ value.is_a?(::RSpec::Mocks::ArgumentMatchers::HashIncludingMatcher)
33
+ end
34
+
29
35
  def self.a_collection_including_something?(value)
30
36
  fuzzy_object?(value) &&
31
37
  value.respond_to?(:expecteds) &&
32
38
  !(value.expecteds.one? && value.expecteds.first.is_a?(::Hash))
33
39
  end
34
40
 
41
+ def self.array_including_something?(value)
42
+ value.is_a?(::RSpec::Mocks::ArgumentMatchers::ArrayIncludingMatcher)
43
+ end
44
+
35
45
  def self.an_object_having_some_attributes?(value)
36
46
  fuzzy_object?(value) &&
37
47
  value.base_matcher.is_a?(::RSpec::Matchers::BuiltIn::HaveAttributes)
@@ -47,11 +57,23 @@ module SuperDiff
47
57
  value.base_matcher.is_a?(::RSpec::Matchers::BuiltIn::BeAKindOf)
48
58
  end
49
59
 
60
+ # HINT: `a_kind_of` is a matcher in the rspec-expectations gem.
61
+ # `kind_of` is an argument matcher in the rspec-mocks gem.
62
+ def self.kind_of_something?(value)
63
+ value.is_a?(::RSpec::Mocks::ArgumentMatchers::KindOf)
64
+ end
65
+
50
66
  def self.an_instance_of_something?(value)
51
67
  fuzzy_object?(value) &&
52
68
  value.base_matcher.is_a?(::RSpec::Matchers::BuiltIn::BeAnInstanceOf)
53
69
  end
54
70
 
71
+ # HINT: `an_instance_of` is a matcher in the rspec-expectations gem.
72
+ # `instance_of` is an argument matcher in the rspec-mocks gem.
73
+ def self.instance_of_something?(value)
74
+ value.is_a?(::RSpec::Mocks::ArgumentMatchers::InstanceOf)
75
+ end
76
+
55
77
  def self.a_value_within_something?(value)
56
78
  fuzzy_object?(value) &&
57
79
  value.base_matcher.is_a?(::RSpec::Matchers::BuiltIn::BeWithin)
@@ -3,8 +3,10 @@ module SuperDiff
3
3
  module Differs
4
4
  class CollectionIncluding < SuperDiff::Differs::Array
5
5
  def self.applies_to?(expected, actual)
6
- SuperDiff::RSpec.a_collection_including_something?(expected) &&
7
- actual.is_a?(::Array)
6
+ (
7
+ SuperDiff::RSpec.a_collection_including_something?(expected) ||
8
+ SuperDiff::RSpec.array_including_something?(expected)
9
+ ) && actual.is_a?(::Array)
8
10
  end
9
11
 
10
12
  private
@@ -3,8 +3,10 @@ module SuperDiff
3
3
  module Differs
4
4
  class HashIncluding < SuperDiff::Differs::Hash
5
5
  def self.applies_to?(expected, actual)
6
- SuperDiff::RSpec.a_hash_including_something?(expected) &&
7
- actual.is_a?(::Hash)
6
+ (
7
+ SuperDiff::RSpec.a_hash_including_something?(expected) ||
8
+ SuperDiff::RSpec.hash_including_something?(expected)
9
+ ) && actual.is_a?(::Hash)
8
10
  end
9
11
 
10
12
  private
@@ -4,7 +4,7 @@ module SuperDiff
4
4
  module Inspectors
5
5
  class CollectionIncluding < SuperDiff::ObjectInspection::Inspectors::Base
6
6
  def self.applies_to?(value)
7
- SuperDiff::RSpec.a_collection_including_something?(value)
7
+ SuperDiff::RSpec.a_collection_including_something?(value) || SuperDiff::RSpec.array_including_something?(value)
8
8
  end
9
9
 
10
10
  protected
@@ -13,8 +13,13 @@ module SuperDiff
13
13
  SuperDiff::ObjectInspection::InspectionTree.new do
14
14
  add_text "#<a collection including ("
15
15
 
16
- nested do |aliased_matcher|
17
- insert_array_inspection_of(aliased_matcher.expecteds)
16
+ nested do |value|
17
+ array = if SuperDiff::RSpec.a_collection_including_something?(value)
18
+ value.expecteds
19
+ else
20
+ value.instance_variable_get(:@expected)
21
+ end
22
+ insert_array_inspection_of(array)
18
23
  end
19
24
 
20
25
  add_break
@@ -4,7 +4,7 @@ module SuperDiff
4
4
  module Inspectors
5
5
  class HashIncluding < SuperDiff::ObjectInspection::Inspectors::Base
6
6
  def self.applies_to?(value)
7
- SuperDiff::RSpec.a_hash_including_something?(value)
7
+ SuperDiff::RSpec.a_hash_including_something?(value) || SuperDiff::RSpec.hash_including_something?(value)
8
8
  end
9
9
 
10
10
  protected
@@ -13,9 +13,14 @@ module SuperDiff
13
13
  SuperDiff::ObjectInspection::InspectionTree.new do
14
14
  add_text "#<a hash including ("
15
15
 
16
- nested do |aliased_matcher|
16
+ nested do |value|
17
+ hash = if SuperDiff::RSpec.a_hash_including_something?(value)
18
+ value.expecteds.first
19
+ else
20
+ value.instance_variable_get(:@expected)
21
+ end
17
22
  insert_hash_inspection_of(
18
- aliased_matcher.expecteds.first,
23
+ hash,
19
24
  initial_break: nil,
20
25
  )
21
26
  end
@@ -4,15 +4,20 @@ module SuperDiff
4
4
  module Inspectors
5
5
  class InstanceOf < SuperDiff::ObjectInspection::Inspectors::Base
6
6
  def self.applies_to?(value)
7
- SuperDiff::RSpec.an_instance_of_something?(value)
7
+ SuperDiff::RSpec.an_instance_of_something?(value) || SuperDiff::RSpec.instance_of_something?(value)
8
8
  end
9
9
 
10
10
  protected
11
11
 
12
12
  def inspection_tree
13
13
  SuperDiff::ObjectInspection::InspectionTree.new do
14
- add_text do |aliased_matcher|
15
- "#<an instance of #{aliased_matcher.expected}>"
14
+ add_text do |value|
15
+ klass = if SuperDiff::RSpec.an_instance_of_something?(value)
16
+ value.expected
17
+ else
18
+ value.instance_variable_get(:@klass)
19
+ end
20
+ "#<an instance of #{klass}>"
16
21
  end
17
22
  end
18
23
  end
@@ -4,15 +4,20 @@ module SuperDiff
4
4
  module Inspectors
5
5
  class KindOf < SuperDiff::ObjectInspection::Inspectors::Base
6
6
  def self.applies_to?(value)
7
- SuperDiff::RSpec.a_kind_of_something?(value)
7
+ SuperDiff::RSpec.a_kind_of_something?(value) || SuperDiff::RSpec.kind_of_something?(value)
8
8
  end
9
9
 
10
10
  protected
11
11
 
12
12
  def inspection_tree
13
13
  SuperDiff::ObjectInspection::InspectionTree.new do
14
- add_text do |aliased_matcher|
15
- "#<a kind of #{aliased_matcher.expected}>"
14
+ add_text do |value|
15
+ klass = if SuperDiff::RSpec.a_kind_of_something?(value)
16
+ value.expected
17
+ else
18
+ value.instance_variable_get(:@klass)
19
+ end
20
+ "#<a kind of #{klass}>"
16
21
  end
17
22
  end
18
23
  end
@@ -3,8 +3,10 @@ module SuperDiff
3
3
  module OperationTreeBuilders
4
4
  class CollectionIncluding < SuperDiff::OperationTreeBuilders::Array
5
5
  def self.applies_to?(expected, actual)
6
- SuperDiff::RSpec.a_collection_including_something?(expected) &&
7
- actual.is_a?(::Array)
6
+ (
7
+ SuperDiff::RSpec.a_collection_including_something?(expected) ||
8
+ SuperDiff::RSpec.array_including_something?(expected)
9
+ ) && actual.is_a?(::Array)
8
10
  end
9
11
 
10
12
  def initialize(expected:, actual:, **rest)
@@ -16,7 +18,12 @@ module SuperDiff
16
18
  private
17
19
 
18
20
  def actual_with_extra_items_in_expected_at_end
19
- actual + (expected.expecteds - actual)
21
+ value = if SuperDiff::RSpec.a_collection_including_something?(expected)
22
+ expected.expecteds
23
+ else
24
+ expected.instance_variable_get(:@expected)
25
+ end
26
+ actual + (value - actual)
20
27
  end
21
28
  end
22
29
  end
@@ -3,12 +3,19 @@ module SuperDiff
3
3
  module OperationTreeBuilders
4
4
  class HashIncluding < SuperDiff::OperationTreeBuilders::Hash
5
5
  def self.applies_to?(expected, actual)
6
- SuperDiff::RSpec.a_hash_including_something?(expected) &&
7
- actual.is_a?(::Hash)
6
+ (
7
+ SuperDiff::RSpec.a_hash_including_something?(expected) ||
8
+ SuperDiff::RSpec.hash_including_something?(expected)
9
+ ) && actual.is_a?(::Hash)
8
10
  end
9
11
 
10
12
  def initialize(expected:, **rest)
11
- super(expected: expected.expecteds.first, **rest)
13
+ hash = if SuperDiff::RSpec.a_hash_including_something?(expected)
14
+ expected.expecteds.first
15
+ else
16
+ expected.instance_variable_get(:@expected)
17
+ end
18
+ super(expected: hash, **rest)
12
19
  end
13
20
 
14
21
  private
@@ -1,3 +1,3 @@
1
1
  module SuperDiff
2
- VERSION = "0.6.2".freeze
2
+ VERSION = "0.7.0".freeze
3
3
  end
data/spec/examples.txt CHANGED
@@ -1,406 +1,410 @@
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 |
1
+ example_id | status | run_time |
2
+ ---------------------------------------------------------------------------- | ------- | --------------- |
3
+ ./spec/integration/rails/active_record_spec.rb[1:1:1:1:1] | passed | 1.47 seconds |
4
+ ./spec/integration/rails/active_record_spec.rb[1:1:1:2:1] | passed | 1.42 seconds |
5
+ ./spec/integration/rails/active_record_spec.rb[1:1:1:3:1] | passed | 1.42 seconds |
6
+ ./spec/integration/rails/active_record_spec.rb[1:1:1:4:1] | passed | 1.43 seconds |
7
+ ./spec/integration/rails/active_record_spec.rb[1:1:1:5:1] | passed | 1.44 seconds |
8
+ ./spec/integration/rails/active_record_spec.rb[1:1:1:6:1] | passed | 1.45 seconds |
9
+ ./spec/integration/rails/active_record_spec.rb[1:1:2:1:1] | passed | 1.45 seconds |
10
+ ./spec/integration/rails/active_record_spec.rb[1:2:1:1:1] | passed | 1.43 seconds |
11
+ ./spec/integration/rails/active_record_spec.rb[1:2:1:2:1] | passed | 1.42 seconds |
12
+ ./spec/integration/rails/active_record_spec.rb[1:2:1:3:1] | passed | 1.42 seconds |
13
+ ./spec/integration/rails/active_record_spec.rb[1:2:1:4:1] | passed | 1.44 seconds |
14
+ ./spec/integration/rails/active_record_spec.rb[1:2:1:5:1] | passed | 1.43 seconds |
15
+ ./spec/integration/rails/active_record_spec.rb[1:2:1:6:1] | passed | 1.44 seconds |
16
+ ./spec/integration/rails/active_record_spec.rb[1:2:2:1:1] | passed | 1.45 seconds |
17
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:1:1:1:1:1] | passed | 1.42 seconds |
18
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:1:1:1:2:1] | passed | 1.44 seconds |
19
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:1:2:1:1:1] | passed | 1.41 seconds |
20
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:1:2:1:2:1] | passed | 1.41 seconds |
21
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:1:2:2:1:1] | passed | 1.48 seconds |
22
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:1:2:2:2:1] | passed | 1.41 seconds |
23
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:2:1:1:1:1] | passed | 1.44 seconds |
24
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:2:1:1:2:1] | passed | 1.41 seconds |
25
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:2:2:1:1:1] | passed | 1.41 seconds |
26
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:2:2:1:2:1] | passed | 1.41 seconds |
27
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:2:2:2:1:1] | passed | 1.41 seconds |
28
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:1:2:2:2:2:1] | passed | 1.42 seconds |
29
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:1:1:1:1:1] | passed | 1.12 seconds |
30
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:1:1:1:2:1] | passed | 1.14 seconds |
31
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:1:2:1:1:1] | passed | 1.15 seconds |
32
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:1:2:1:2:1] | passed | 1.09 seconds |
33
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:1:2:2:1:1] | passed | 1.14 seconds |
34
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:1:2:2:2:1] | passed | 1.09 seconds |
35
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:2:1:1:1:1] | passed | 1.08 seconds |
36
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:2:1:1:2:1] | passed | 1.09 seconds |
37
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:2:2:1:1:1] | passed | 1.09 seconds |
38
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:2:2:1:2:1] | passed | 1.1 seconds |
39
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:2:2:2:1:1] | passed | 1.2 seconds |
40
+ ./spec/integration/rails/hash_with_indifferent_access_spec.rb[1:2:2:2:2:2:1] | passed | 1.14 seconds |
41
+ ./spec/integration/rspec/be_falsey_matcher_spec.rb[1:1] | passed | 1.1 seconds |
42
+ ./spec/integration/rspec/be_falsey_matcher_spec.rb[1:2] | passed | 1.07 seconds |
43
+ ./spec/integration/rspec/be_matcher_spec.rb[1:1:1:1] | passed | 1.51 seconds |
44
+ ./spec/integration/rspec/be_matcher_spec.rb[1:1:1:2] | passed | 1.3 seconds |
45
+ ./spec/integration/rspec/be_matcher_spec.rb[1:1:2:1] | passed | 1.1 seconds |
46
+ ./spec/integration/rspec/be_matcher_spec.rb[1:1:2:2] | passed | 1.08 seconds |
47
+ ./spec/integration/rspec/be_matcher_spec.rb[1:2:1] | passed | 1.1 seconds |
48
+ ./spec/integration/rspec/be_matcher_spec.rb[1:2:2] | passed | 1.08 seconds |
49
+ ./spec/integration/rspec/be_matcher_spec.rb[1:3:1] | passed | 1.13 seconds |
50
+ ./spec/integration/rspec/be_matcher_spec.rb[1:3:2] | passed | 1.09 seconds |
51
+ ./spec/integration/rspec/be_matcher_spec.rb[1:4:1] | passed | 1.09 seconds |
52
+ ./spec/integration/rspec/be_matcher_spec.rb[1:4:2] | passed | 1.13 seconds |
53
+ ./spec/integration/rspec/be_matcher_spec.rb[1:5:1] | passed | 1.14 seconds |
54
+ ./spec/integration/rspec/be_matcher_spec.rb[1:5:2] | passed | 1.17 seconds |
55
+ ./spec/integration/rspec/be_matcher_spec.rb[1:6:1] | passed | 1.08 seconds |
56
+ ./spec/integration/rspec/be_matcher_spec.rb[1:6:2] | passed | 1.12 seconds |
57
+ ./spec/integration/rspec/be_matcher_spec.rb[1:7:1] | passed | 1.15 seconds |
58
+ ./spec/integration/rspec/be_matcher_spec.rb[1:7:2] | passed | 1.09 seconds |
59
+ ./spec/integration/rspec/be_matcher_spec.rb[1:8:1] | passed | 1.14 seconds |
60
+ ./spec/integration/rspec/be_matcher_spec.rb[1:8:2] | passed | 1.15 seconds |
61
+ ./spec/integration/rspec/be_matcher_spec.rb[1:9:1] | passed | 1.12 seconds |
62
+ ./spec/integration/rspec/be_matcher_spec.rb[1:9:2] | passed | 1.18 seconds |
63
+ ./spec/integration/rspec/be_nil_matcher_spec.rb[1:1] | passed | 1.08 seconds |
64
+ ./spec/integration/rspec/be_nil_matcher_spec.rb[1:2] | passed | 1.08 seconds |
65
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:1:1:1] | passed | 1.07 seconds |
66
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:1:2:1] | passed | 1.09 seconds |
67
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:1:1:1] | passed | 1.37 seconds |
68
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:1:2:1] | passed | 1.14 seconds |
69
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:1:1:1:1] | passed | 1.09 seconds |
70
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:1:1:2:1] | passed | 1.11 seconds |
71
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:1:2:1] | passed | 1.87 seconds |
72
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:1:3:1:1:1] | passed | 1.18 seconds |
73
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:1:3:1:2:1] | passed | 1.39 seconds |
74
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:1:3:2:1:1] | passed | 1.16 seconds |
75
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:1:3:2:2:1] | passed | 1.11 seconds |
76
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:2:1:1] | passed | 1.08 seconds |
77
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:1:2:2:2:2:1] | passed | 1.23 seconds |
78
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:1:1:1] | passed | 1.07 seconds |
79
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:1:2:1] | passed | 1.14 seconds |
80
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:1:1:1] | passed | 1.15 seconds |
81
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:1:2:1] | passed | 1.1 seconds |
82
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:1:1:1:1] | passed | 1.09 seconds |
83
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:1:1:2:1] | passed | 1.13 seconds |
84
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:1:2:1] | passed | 1.15 seconds |
85
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:1:3:1:1:1] | passed | 1.2 seconds |
86
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:1:3:1:2:1] | passed | 1.2 seconds |
87
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:1:3:2:1:1] | passed | 1.23 seconds |
88
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:1:3:2:2:1] | passed | 1.18 seconds |
89
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:2:1:1] | passed | 1.19 seconds |
90
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:2:2:2:2:2:1] | passed | 1.26 seconds |
91
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:1:1:1] | passed | 1.12 seconds |
92
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:1:2:1] | passed | 1.22 seconds |
93
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:1:1:1] | passed | 1.1 seconds |
94
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:1:2:1] | passed | 1.15 seconds |
95
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:1:1:1:1] | passed | 1.27 seconds |
96
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:1:1:2:1] | passed | 1.09 seconds |
97
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:1:2:1] | passed | 1.13 seconds |
98
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:1:3:1:1:1] | passed | 1.2 seconds |
99
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:1:3:1:2:1] | passed | 1.17 seconds |
100
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:1:3:2:1:1] | passed | 1.12 seconds |
101
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:1:3:2:2:1] | passed | 1.18 seconds |
102
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:2:1:1] | passed | 1.08 seconds |
103
+ ./spec/integration/rspec/be_predicate_matcher_spec.rb[1:3:2:2:2:2:1] | passed | 1.09 seconds |
104
+ ./spec/integration/rspec/be_truthy_matcher_spec.rb[1:1] | passed | 1.08 seconds |
105
+ ./spec/integration/rspec/be_truthy_matcher_spec.rb[1:2] | passed | 1.08 seconds |
106
+ ./spec/integration/rspec/contain_exactly_matcher_spec.rb[1:1:1] | passed | 1.1 seconds |
107
+ ./spec/integration/rspec/contain_exactly_matcher_spec.rb[1:1:2] | passed | 1.09 seconds |
108
+ ./spec/integration/rspec/contain_exactly_matcher_spec.rb[1:2:1:1] | passed | 1.11 seconds |
109
+ ./spec/integration/rspec/contain_exactly_matcher_spec.rb[1:2:1:2] | passed | 1.08 seconds |
110
+ ./spec/integration/rspec/contain_exactly_matcher_spec.rb[1:2:2:1] | passed | 1.11 seconds |
111
+ ./spec/integration/rspec/contain_exactly_matcher_spec.rb[1:2:2:2] | passed | 1.11 seconds |
112
+ ./spec/integration/rspec/contain_exactly_matcher_spec.rb[1:2:3:1] | passed | 1.11 seconds |
113
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:1:1] | passed | 1.11 seconds |
114
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:1:2] | passed | 1.06 seconds |
115
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:2:1] | passed | 1.07 seconds |
116
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:2:2] | passed | 1.07 seconds |
117
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:3:1] | passed | 1.08 seconds |
118
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:3:2] | passed | 1.07 seconds |
119
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:4:1] | passed | 2.14 seconds |
120
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:4:2] | passed | 2.08 seconds |
121
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:5:1] | passed | 2.78 seconds |
122
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:6:1] | passed | 1.08 seconds |
123
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:7:1] | passed | 1.07 seconds |
124
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:8:1] | failed | 0.55377 seconds |
125
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:8:2] | passed | 1.08 seconds |
126
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:9:1] | passed | 1.12 seconds |
127
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:9:2] | passed | 1.08 seconds |
128
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:10:1] | passed | 1.08 seconds |
129
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:10:2] | passed | 1.08 seconds |
130
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:11:1] | passed | 1.07 seconds |
131
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:11:2] | passed | 1.08 seconds |
132
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:12:1] | passed | 1.14 seconds |
133
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:12:2] | unknown | |
134
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:13:1] | passed | 1.15 seconds |
135
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:14:1] | passed | 1.08 seconds |
136
+ ./spec/integration/rspec/eq_matcher_spec.rb[1:15:1] | unknown | |
137
+ ./spec/integration/rspec/have_attributes_matcher_spec.rb[1:1:1:1:1] | passed | 1.09 seconds |
138
+ ./spec/integration/rspec/have_attributes_matcher_spec.rb[1:1:1:1:2] | passed | 1.08 seconds |
139
+ ./spec/integration/rspec/have_attributes_matcher_spec.rb[1:1:1:2:1] | passed | 1.09 seconds |
140
+ ./spec/integration/rspec/have_attributes_matcher_spec.rb[1:1:2:1:1] | passed | 1.1 seconds |
141
+ ./spec/integration/rspec/have_attributes_matcher_spec.rb[1:1:2:1:2] | passed | 1.08 seconds |
142
+ ./spec/integration/rspec/have_attributes_matcher_spec.rb[1:1:2:2:1] | passed | 2.14 seconds |
143
+ ./spec/integration/rspec/have_attributes_matcher_spec.rb[1:2:1] | passed | 1.09 seconds |
144
+ ./spec/integration/rspec/have_attributes_matcher_spec.rb[1:2:2:1] | passed | 2.12 seconds |
145
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:1:1:1] | passed | 1.08 seconds |
146
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:1:2:1] | passed | 1.1 seconds |
147
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:1:1:1] | passed | 1.08 seconds |
148
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:1:2:1] | passed | 1.1 seconds |
149
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:1:1:1:1] | passed | 1.13 seconds |
150
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:1:1:2:1] | passed | 1.09 seconds |
151
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:1:2:1:1] | passed | 1.09 seconds |
152
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:1:2:2:1] | passed | 1.11 seconds |
153
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:2:1:1:1] | passed | 1.08 seconds |
154
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:2:1:2:1] | passed | 1.1 seconds |
155
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:2:2:1:1] | passed | 1.08 seconds |
156
+ ./spec/integration/rspec/have_predicate_matcher_spec.rb[1:2:2:2:2:2:1] | passed | 1.08 seconds |
157
+ ./spec/integration/rspec/include_matcher_spec.rb[1:1:1:1] | passed | 1.11 seconds |
158
+ ./spec/integration/rspec/include_matcher_spec.rb[1:1:1:2] | passed | 1.09 seconds |
159
+ ./spec/integration/rspec/include_matcher_spec.rb[1:1:2:1] | passed | 1.09 seconds |
160
+ ./spec/integration/rspec/include_matcher_spec.rb[1:1:2:2] | passed | 1.09 seconds |
161
+ ./spec/integration/rspec/include_matcher_spec.rb[1:2:1:1] | failed | 0.53687 seconds |
162
+ ./spec/integration/rspec/include_matcher_spec.rb[1:2:1:2] | passed | 1.12 seconds |
163
+ ./spec/integration/rspec/include_matcher_spec.rb[1:2:2:1] | passed | 1.37 seconds |
164
+ ./spec/integration/rspec/include_matcher_spec.rb[1:2:2:2] | passed | 1.21 seconds |
165
+ ./spec/integration/rspec/match_array_matcher_spec.rb[1:1:1] | passed | 1.11 seconds |
166
+ ./spec/integration/rspec/match_array_matcher_spec.rb[1:1:2] | passed | 1.08 seconds |
167
+ ./spec/integration/rspec/match_array_matcher_spec.rb[1:2:1:1] | passed | 1.1 seconds |
168
+ ./spec/integration/rspec/match_array_matcher_spec.rb[1:2:1:2] | passed | 1.18 seconds |
169
+ ./spec/integration/rspec/match_array_matcher_spec.rb[1:2:2:1] | passed | 1.17 seconds |
170
+ ./spec/integration/rspec/match_array_matcher_spec.rb[1:2:2:2] | passed | 1.08 seconds |
171
+ ./spec/integration/rspec/match_array_matcher_spec.rb[1:2:3:1] | passed | 1.17 seconds |
172
+ ./spec/integration/rspec/match_array_matcher_spec.rb[1:3:1] | passed | 1.1 seconds |
173
+ ./spec/integration/rspec/match_matcher_spec.rb[1:1:1:1] | passed | 1.09 seconds |
174
+ ./spec/integration/rspec/match_matcher_spec.rb[1:1:1:2] | passed | 1.09 seconds |
175
+ ./spec/integration/rspec/match_matcher_spec.rb[1:1:2:1] | passed | 1.1 seconds |
176
+ ./spec/integration/rspec/match_matcher_spec.rb[1:1:2:2] | passed | 1.08 seconds |
177
+ ./spec/integration/rspec/match_matcher_spec.rb[1:2:1:1] | passed | 1.13 seconds |
178
+ ./spec/integration/rspec/match_matcher_spec.rb[1:2:1:2] | passed | 1.09 seconds |
179
+ ./spec/integration/rspec/match_matcher_spec.rb[1:2:2:1] | passed | 1.09 seconds |
180
+ ./spec/integration/rspec/match_matcher_spec.rb[1:3:1:1] | passed | 1.1 seconds |
181
+ ./spec/integration/rspec/match_matcher_spec.rb[1:3:1:2] | passed | 1.08 seconds |
182
+ ./spec/integration/rspec/match_matcher_spec.rb[1:3:2:1] | passed | 1.1 seconds |
183
+ ./spec/integration/rspec/match_matcher_spec.rb[1:3:2:2] | passed | 1.09 seconds |
184
+ ./spec/integration/rspec/match_matcher_spec.rb[1:4:1:1] | passed | 1.09 seconds |
185
+ ./spec/integration/rspec/match_matcher_spec.rb[1:4:1:2] | passed | 1.09 seconds |
186
+ ./spec/integration/rspec/match_matcher_spec.rb[1:4:2:1] | passed | 1.09 seconds |
187
+ ./spec/integration/rspec/match_matcher_spec.rb[1:5:1:1] | passed | 1.1 seconds |
188
+ ./spec/integration/rspec/match_matcher_spec.rb[1:5:1:2] | passed | 1.09 seconds |
189
+ ./spec/integration/rspec/match_matcher_spec.rb[1:5:2:1] | passed | 1.11 seconds |
190
+ ./spec/integration/rspec/match_matcher_spec.rb[1:5:2:2] | passed | 1.09 seconds |
191
+ ./spec/integration/rspec/match_matcher_spec.rb[1:6:1] | passed | 1.1 seconds |
192
+ ./spec/integration/rspec/match_matcher_spec.rb[1:6:2] | passed | 1.09 seconds |
193
+ ./spec/integration/rspec/match_matcher_spec.rb[1:7:1:1] | passed | 1.09 seconds |
194
+ ./spec/integration/rspec/match_matcher_spec.rb[1:7:1:2] | passed | 1.08 seconds |
195
+ ./spec/integration/rspec/match_matcher_spec.rb[1:7:2:1] | passed | 1.23 seconds |
196
+ ./spec/integration/rspec/match_matcher_spec.rb[1:7:2:2] | passed | 1.09 seconds |
197
+ ./spec/integration/rspec/match_matcher_spec.rb[1:8:1:1] | passed | 1.11 seconds |
198
+ ./spec/integration/rspec/match_matcher_spec.rb[1:8:1:2] | passed | 1.09 seconds |
199
+ ./spec/integration/rspec/match_matcher_spec.rb[1:8:2:1] | passed | 1.1 seconds |
200
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:1:1:1:1:1] | passed | 1.08 seconds |
201
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:1:1:1:2:1] | passed | 1.07 seconds |
202
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:1:1:2:1] | passed | 1.07 seconds |
203
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:1:2:1:1] | passed | 1.07 seconds |
204
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:1:2:2:1] | passed | 1.09 seconds |
205
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:1:1:1:1] | passed | 1.09 seconds |
206
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:1:1:2:1:1] | passed | 1.08 seconds |
207
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:1:1:2:2:1] | passed | 1.1 seconds |
208
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:1:2:1:1] | passed | 1.11 seconds |
209
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:1:2:2:1:1] | passed | 1.08 seconds |
210
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:1:2:2:2:1] | passed | 1.1 seconds |
211
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:2:1:1] | passed | 1.11 seconds |
212
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:2:2:1:1] | passed | 1.08 seconds |
213
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:2:2:2:2:1] | passed | 1.09 seconds |
214
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:3:1:1:1:1] | passed | 1.08 seconds |
215
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:3:1:1:2:1] | passed | 1.15 seconds |
216
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:3:1:2:1:1] | passed | 1.09 seconds |
217
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:3:1:2:2:1] | passed | 1.08 seconds |
218
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:3:2:1:1] | passed | 1.08 seconds |
219
+ ./spec/integration/rspec/raise_error_matcher_spec.rb[1:3:2:2:1] | passed | 1.09 seconds |
220
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:1:1:1] | passed | 1.06 seconds |
221
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:1:1:2] | passed | 1.07 seconds |
222
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:1:2:1] | passed | 1.07 seconds |
223
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:1:2:2] | passed | 1.08 seconds |
224
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:2:1:1] | passed | 1.08 seconds |
225
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:2:1:2] | passed | 1.07 seconds |
226
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:2:2:1] | passed | 1.09 seconds |
227
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:2:2:2] | passed | 1.07 seconds |
228
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:3:1:1] | passed | 1.06 seconds |
229
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:3:1:2] | passed | 1.06 seconds |
230
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:3:2:1] | passed | 1.08 seconds |
231
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:3:2:2] | passed | 1.08 seconds |
232
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:4:1:1] | passed | 1.13 seconds |
233
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:4:1:2] | passed | 1.08 seconds |
234
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:4:2:1] | passed | 1.07 seconds |
235
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:4:2:2] | passed | 1.06 seconds |
236
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:5:1:1] | passed | 1.07 seconds |
237
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:5:1:2] | passed | 1.06 seconds |
238
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:5:2:1] | passed | 1.07 seconds |
239
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:5:2:2] | passed | 1.13 seconds |
240
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:6:1] | passed | 1.08 seconds |
241
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:6:2] | passed | 1.07 seconds |
242
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:7:1] | passed | 1.07 seconds |
243
+ ./spec/integration/rspec/respond_to_matcher_spec.rb[1:7:2] | passed | 1.07 seconds |
244
+ ./spec/integration/rspec/third_party_matcher_spec.rb[1:1:1:1:1] | passed | 1.07 seconds |
245
+ ./spec/integration/rspec/third_party_matcher_spec.rb[1:1:1:2:1:1] | passed | 1.17 seconds |
246
+ ./spec/integration/rspec/third_party_matcher_spec.rb[1:1:1:2:2:1] | passed | 1.07 seconds |
247
+ ./spec/integration/rspec/third_party_matcher_spec.rb[1:1:2:1] | passed | 1.14 seconds |
248
+ ./spec/integration/rspec/third_party_matcher_spec.rb[1:2:1:1:1] | passed | 1.16 seconds |
249
+ ./spec/integration/rspec/third_party_matcher_spec.rb[1:2:1:2:1:1] | passed | 1.12 seconds |
250
+ ./spec/integration/rspec/third_party_matcher_spec.rb[1:2:1:2:2:1] | passed | 1.21 seconds |
251
+ ./spec/integration/rspec/third_party_matcher_spec.rb[1:2:2:1] | passed | 1.19 seconds |
252
+ ./spec/integration/rspec/unhandled_errors_spec.rb[1:1:1:1] | passed | 1.14 seconds |
253
+ ./spec/integration/rspec/unhandled_errors_spec.rb[1:1:2:1] | passed | 1.07 seconds |
254
+ ./spec/integration/rspec/unhandled_errors_spec.rb[1:2:1] | passed | 1.11 seconds |
255
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:1:1] | passed | 0.00023 seconds |
256
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:2:1] | passed | 0.00023 seconds |
257
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:3:1] | passed | 0.00202 seconds |
258
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:4:1] | passed | 0.00024 seconds |
259
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:5:1] | passed | 0.00049 seconds |
260
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:6:1] | passed | 0.00039 seconds |
261
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:7:1] | passed | 0.00039 seconds |
262
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:8:1] | passed | 0.00037 seconds |
263
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:9:1] | passed | 0.00035 seconds |
264
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:10:1] | passed | 0.00037 seconds |
265
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:11:1] | passed | 0.0027 seconds |
266
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:12:1] | passed | 0.00066 seconds |
267
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:13:1] | passed | 0.00126 seconds |
268
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:14:1] | passed | 0.00022 seconds |
269
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:15:1] | passed | 0.00138 seconds |
270
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:16:1] | passed | 0.00158 seconds |
271
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:17:1] | passed | 0.00137 seconds |
272
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:18:1] | passed | 0.00236 seconds |
273
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:19:1] | passed | 0.001 seconds |
274
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:20:1] | passed | 0.00086 seconds |
275
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:21:1] | passed | 0.00084 seconds |
276
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:22:1] | passed | 0.00083 seconds |
277
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:23:1] | passed | 0.00514 seconds |
278
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:24:1] | passed | 0.00222 seconds |
279
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:25:1] | passed | 0.00197 seconds |
280
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:26:1] | passed | 0.00323 seconds |
281
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:27:1] | passed | 0.00035 seconds |
282
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:28:1] | passed | 0.00125 seconds |
283
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:29:1] | passed | 0.00139 seconds |
284
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:30:1] | passed | 0.00115 seconds |
285
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:31:1] | passed | 0.00115 seconds |
286
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:32:1] | passed | 0.00199 seconds |
287
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:33:1] | passed | 0.00113 seconds |
288
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:34:1] | passed | 0.00117 seconds |
289
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:35:1:1] | passed | 0.00583 seconds |
290
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:35:2:1] | passed | 0.00383 seconds |
291
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:36:1] | passed | 0.00217 seconds |
292
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:37:1] | passed | 0.00205 seconds |
293
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:38:1] | passed | 0.00216 seconds |
294
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:39:1] | passed | 0.00434 seconds |
295
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:40:1] | passed | 0.00025 seconds |
296
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:41:1] | passed | 0.00259 seconds |
297
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:42:1] | passed | 0.00474 seconds |
298
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:43:1] | passed | 0.00095 seconds |
299
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:44:1] | passed | 0.00105 seconds |
300
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:45:1] | passed | 0.00165 seconds |
301
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:46:1] | passed | 0.00119 seconds |
302
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:47:1] | passed | 0.00152 seconds |
303
+ ./spec/unit/equality_matchers/main_spec.rb[1:1:48:1] | passed | 0.00201 seconds |
304
+ ./spec/unit/rspec/matchers/be_compared_to_spec.rb[1:1:1:1] | passed | 0.00154 seconds |
305
+ ./spec/unit/rspec/matchers/be_compared_to_spec.rb[1:1:2:1] | passed | 0.00052 seconds |
306
+ ./spec/unit/rspec/matchers/be_compared_to_spec.rb[1:1:3:1] | passed | 0.00031 seconds |
307
+ ./spec/unit/rspec/matchers/be_compared_to_spec.rb[1:1:4:1] | passed | 0.00037 seconds |
308
+ ./spec/unit/rspec/matchers/be_compared_to_spec.rb[1:1:5:1] | passed | 0.00031 seconds |
309
+ ./spec/unit/rspec/matchers/be_compared_to_spec.rb[1:1:6:1] | passed | 0.00033 seconds |
310
+ ./spec/unit/rspec/matchers/be_compared_to_spec.rb[1:1:7:1] | passed | 0.00037 seconds |
311
+ ./spec/unit/rspec/matchers/be_falsey_spec.rb[1:1:1] | passed | 0.00034 seconds |
312
+ ./spec/unit/rspec/matchers/be_nil_spec.rb[1:1:1] | passed | 0.00597 seconds |
313
+ ./spec/unit/rspec/matchers/be_predicate_spec.rb[1:1:1] | passed | 0.00188 seconds |
314
+ ./spec/unit/rspec/matchers/be_predicate_spec.rb[2:1:1] | passed | 0.00038 seconds |
315
+ ./spec/unit/rspec/matchers/be_predicate_spec.rb[3:1:1] | passed | 0.0009 seconds |
316
+ ./spec/unit/rspec/matchers/be_spec.rb[1:1:1:1] | passed | 0.00029 seconds |
317
+ ./spec/unit/rspec/matchers/be_spec.rb[1:1:2:1] | passed | 0.00038 seconds |
318
+ ./spec/unit/rspec/matchers/be_truthy_spec.rb[1:1:1] | passed | 0.04877 seconds |
319
+ ./spec/unit/rspec/matchers/contain_exactly_spec.rb[1:1:1] | passed | 0.00079 seconds |
320
+ ./spec/unit/rspec/matchers/eq_spec.rb[1:1:1] | passed | 0.13875 seconds |
321
+ ./spec/unit/rspec/matchers/have_attributes_spec.rb[1:1:1] | passed | 0.00077 seconds |
322
+ ./spec/unit/rspec/matchers/have_predicate_spec.rb[1:1:1:1] | passed | 0.0032 seconds |
323
+ ./spec/unit/rspec/matchers/have_predicate_spec.rb[1:1:2:1] | passed | 0.09393 seconds |
324
+ ./spec/unit/rspec/matchers/include_spec.rb[1:1:1:1] | passed | 0.19048 seconds |
325
+ ./spec/unit/rspec/matchers/include_spec.rb[1:1:2:1] | passed | 0.18837 seconds |
326
+ ./spec/unit/rspec/matchers/match_array_spec.rb[1:1:1] | passed | 0.46138 seconds |
327
+ ./spec/unit/rspec/matchers/match_spec.rb[1:1:1] | passed | 0.00057 seconds |
328
+ ./spec/unit/rspec/matchers/raise_error_spec.rb[1:1:1:1] | passed | 0.00055 seconds |
329
+ ./spec/unit/rspec/matchers/raise_error_spec.rb[1:1:2:1] | passed | 0.0934 seconds |
330
+ ./spec/unit/rspec/matchers/raise_error_spec.rb[1:1:3:1] | passed | 0.0905 seconds |
331
+ ./spec/unit/rspec/matchers/raise_error_spec.rb[1:1:4:1] | passed | 0.09249 seconds |
332
+ ./spec/unit/rspec/matchers/raise_error_spec.rb[1:1:5:1] | passed | 0.0908 seconds |
333
+ ./spec/unit/rspec/matchers/respond_to_spec.rb[1:1:1:1] | passed | 0.00091 seconds |
334
+ ./spec/unit/rspec/matchers/respond_to_spec.rb[1:1:2:1] | passed | 0.00058 seconds |
335
+ ./spec/unit/rspec/matchers/respond_to_spec.rb[1:1:3:1] | passed | 0.00067 seconds |
336
+ ./spec/unit/rspec/matchers/respond_to_spec.rb[1:1:4:1] | passed | 0.00049 seconds |
337
+ ./spec/unit/rspec/matchers/respond_to_spec.rb[1:1:5:1] | passed | 0.00051 seconds |
338
+ ./spec/unit/rspec/matchers/respond_to_spec.rb[1:1:6:1] | passed | 0.00051 seconds |
339
+ ./spec/unit/rspec/matchers/respond_to_spec.rb[1:1:7:1] | passed | 0.00074 seconds |
340
+ ./spec/unit/super_diff_spec.rb[1:1:1:1:1] | passed | 0.00047 seconds |
341
+ ./spec/unit/super_diff_spec.rb[1:1:1:2:1] | passed | 0.00025 seconds |
342
+ ./spec/unit/super_diff_spec.rb[1:1:2:1:1] | passed | 0.00036 seconds |
343
+ ./spec/unit/super_diff_spec.rb[1:1:2:2:1] | passed | 0.00096 seconds |
344
+ ./spec/unit/super_diff_spec.rb[1:1:3:1:1] | passed | 0.00024 seconds |
345
+ ./spec/unit/super_diff_spec.rb[1:1:3:2:1] | passed | 0.00025 seconds |
346
+ ./spec/unit/super_diff_spec.rb[1:1:4:1:1] | passed | 0.00031 seconds |
347
+ ./spec/unit/super_diff_spec.rb[1:1:4:2:1] | passed | 0.00023 seconds |
348
+ ./spec/unit/super_diff_spec.rb[1:1:5:1:1] | passed | 0.00025 seconds |
349
+ ./spec/unit/super_diff_spec.rb[1:1:5:2:1] | passed | 0.00028 seconds |
350
+ ./spec/unit/super_diff_spec.rb[1:1:6:1:1] | passed | 0.00308 seconds |
351
+ ./spec/unit/super_diff_spec.rb[1:1:6:2:1] | passed | 0.00027 seconds |
352
+ ./spec/unit/super_diff_spec.rb[1:1:7:1] | passed | 0.00035 seconds |
353
+ ./spec/unit/super_diff_spec.rb[1:1:8:1:1] | passed | 0.00039 seconds |
354
+ ./spec/unit/super_diff_spec.rb[1:1:8:2:1] | passed | 0.0032 seconds |
355
+ ./spec/unit/super_diff_spec.rb[1:1:9:1:1:1] | passed | 0.00031 seconds |
356
+ ./spec/unit/super_diff_spec.rb[1:1:9:1:2:1] | passed | 0.00031 seconds |
357
+ ./spec/unit/super_diff_spec.rb[1:1:9:2:1:1] | passed | 0.0004 seconds |
358
+ ./spec/unit/super_diff_spec.rb[1:1:9:2:2:1] | passed | 0.0004 seconds |
359
+ ./spec/unit/super_diff_spec.rb[1:1:9:3:1:1] | passed | 0.00024 seconds |
360
+ ./spec/unit/super_diff_spec.rb[1:1:9:3:2:1] | passed | 0.00024 seconds |
361
+ ./spec/unit/super_diff_spec.rb[1:1:10:1:1:1:1] | passed | 0.00039 seconds |
362
+ ./spec/unit/super_diff_spec.rb[1:1:10:1:1:2:1] | passed | 0.0003 seconds |
363
+ ./spec/unit/super_diff_spec.rb[1:1:10:1:2:1:1] | passed | 0.00048 seconds |
364
+ ./spec/unit/super_diff_spec.rb[1:1:10:1:2:2:1] | passed | 0.00098 seconds |
365
+ ./spec/unit/super_diff_spec.rb[1:1:10:2:1:1] | passed | 0.00053 seconds |
366
+ ./spec/unit/super_diff_spec.rb[1:1:10:2:2:1] | passed | 0.00054 seconds |
367
+ ./spec/unit/super_diff_spec.rb[1:1:10:3:1:1] | passed | 0.0003 seconds |
368
+ ./spec/unit/super_diff_spec.rb[1:1:10:3:2:1] | passed | 0.0003 seconds |
369
+ ./spec/unit/super_diff_spec.rb[1:1:11:1:1:1] | passed | 0.00427 seconds |
370
+ ./spec/unit/super_diff_spec.rb[1:1:11:1:2:1] | passed | 0.00336 seconds |
371
+ ./spec/unit/super_diff_spec.rb[1:1:11:2:1:1] | passed | 0.00465 seconds |
372
+ ./spec/unit/super_diff_spec.rb[1:1:11:2:2:1] | passed | 0.00124 seconds |
373
+ ./spec/unit/super_diff_spec.rb[1:1:12:1:1] | passed | 0.00025 seconds |
374
+ ./spec/unit/super_diff_spec.rb[1:1:12:2:1] | passed | 0.0003 seconds |
375
+ ./spec/unit/super_diff_spec.rb[1:1:13:1:1:1] | passed | 0.00124 seconds |
376
+ ./spec/unit/super_diff_spec.rb[1:1:13:1:2:1] | passed | 0.00043 seconds |
377
+ ./spec/unit/super_diff_spec.rb[1:1:13:2:1:1] | passed | 0.00061 seconds |
378
+ ./spec/unit/super_diff_spec.rb[1:1:13:2:2:1] | passed | 0.00055 seconds |
379
+ ./spec/unit/super_diff_spec.rb[1:1:14:1:1:1] | passed | 0.00027 seconds |
380
+ ./spec/unit/super_diff_spec.rb[1:1:14:1:2:1] | passed | 0.00037 seconds |
381
+ ./spec/unit/super_diff_spec.rb[1:1:14:2:1:1] | passed | 0.00027 seconds |
382
+ ./spec/unit/super_diff_spec.rb[1:1:14:2:2:1] | passed | 0.00072 seconds |
383
+ ./spec/unit/super_diff_spec.rb[1:1:14:3:1:1] | passed | 0.00026 seconds |
384
+ ./spec/unit/super_diff_spec.rb[1:1:14:3:2:1] | passed | 0.00032 seconds |
385
+ ./spec/unit/super_diff_spec.rb[1:1:15:1:1] | passed | 0.0003 seconds |
386
+ ./spec/unit/super_diff_spec.rb[1:1:15:2:1] | passed | 0.00043 seconds |
387
+ ./spec/unit/super_diff_spec.rb[1:1:16:1:1] | passed | 0.00033 seconds |
388
+ ./spec/unit/super_diff_spec.rb[1:1:16:2:1] | passed | 0.0004 seconds |
389
+ ./spec/unit/super_diff_spec.rb[1:1:17:1:1] | passed | 0.0003 seconds |
390
+ ./spec/unit/super_diff_spec.rb[1:1:17:2:1] | passed | 0.00042 seconds |
391
+ ./spec/unit/super_diff_spec.rb[1:1:18:1:1] | passed | 0.00036 seconds |
392
+ ./spec/unit/super_diff_spec.rb[1:1:18:2:1] | passed | 0.00042 seconds |
393
+ ./spec/unit/super_diff_spec.rb[1:1:19:1:1] | passed | 0.00028 seconds |
394
+ ./spec/unit/super_diff_spec.rb[1:1:19:2:1] | passed | 0.0007 seconds |
395
+ ./spec/unit/super_diff_spec.rb[1:1:20:1:1] | passed | 0.00061 seconds |
396
+ ./spec/unit/super_diff_spec.rb[1:1:20:2:1] | passed | 0.00027 seconds |
397
+ ./spec/unit/super_diff_spec.rb[1:1:21:1:1] | passed | 0.00473 seconds |
398
+ ./spec/unit/super_diff_spec.rb[1:1:21:2:1] | passed | 0.00091 seconds |
399
+ ./spec/unit/super_diff_spec.rb[1:1:22:1:1:1] | passed | 0.00041 seconds |
400
+ ./spec/unit/super_diff_spec.rb[1:1:22:1:2:1] | passed | 0.00025 seconds |
401
+ ./spec/unit/super_diff_spec.rb[1:1:23:1:1] | passed | 0.00045 seconds |
402
+ ./spec/unit/super_diff_spec.rb[1:1:23:2:1] | passed | 0.00245 seconds |
403
+ ./spec/unit/super_diff_spec.rb[1:1:24:1:1] | passed | 0.00148 seconds |
404
+ ./spec/unit/super_diff_spec.rb[1:1:24:2:1] | passed | 0.00616 seconds |
405
+ ./spec/unit/super_diff_spec.rb[1:1:25:1:1] | passed | 0.00042 seconds |
406
+ ./spec/unit/super_diff_spec.rb[1:1:25:2:1] | passed | 0.00045 seconds |
407
+ ./spec/unit/super_diff_spec.rb[1:1:26:1:1] | passed | 0.00112 seconds |
408
+ ./spec/unit/super_diff_spec.rb[1:1:26:2:1] | passed | 0.00159 seconds |
409
+ ./spec/unit/super_diff_spec.rb[1:2:1:1] | passed | 0.00446 seconds |
410
+ ./spec/unit/super_diff_spec.rb[1:2:2:1] | passed | 0.00043 seconds |