super_diff 0.9.0 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +65 -26
- data/lib/super_diff/active_record/differs/active_record_relation.rb +1 -2
- data/lib/super_diff/active_record/differs.rb +1 -1
- data/lib/super_diff/active_record/object_inspection/inspection_tree_builders/active_record_model.rb +22 -18
- data/lib/super_diff/active_record/object_inspection/inspection_tree_builders/active_record_relation.rb +14 -7
- data/lib/super_diff/active_record/object_inspection/inspection_tree_builders.rb +2 -2
- data/lib/super_diff/active_record/object_inspection.rb +1 -1
- data/lib/super_diff/active_record/operation_tree_builders/active_record_model.rb +1 -2
- data/lib/super_diff/active_record/operation_tree_builders/active_record_relation.rb +1 -2
- data/lib/super_diff/active_record/operation_tree_builders.rb +2 -2
- data/lib/super_diff/active_record/operation_tree_flatteners.rb +1 -1
- data/lib/super_diff/active_record/operation_trees.rb +1 -1
- data/lib/super_diff/active_record.rb +7 -15
- data/lib/super_diff/active_support/differs/hash_with_indifferent_access.rb +5 -6
- data/lib/super_diff/active_support/differs.rb +1 -1
- data/lib/super_diff/active_support/object_inspection/inspection_tree_builders/hash_with_indifferent_access.rb +20 -11
- data/lib/super_diff/active_support/object_inspection/inspection_tree_builders/ordered_options.rb +46 -0
- data/lib/super_diff/active_support/object_inspection/inspection_tree_builders.rb +5 -1
- data/lib/super_diff/active_support/object_inspection.rb +1 -1
- data/lib/super_diff/active_support/operation_tree_builders/hash_with_indifferent_access.rb +5 -6
- data/lib/super_diff/active_support/operation_tree_builders.rb +1 -1
- data/lib/super_diff/active_support/operation_tree_flatteners.rb +1 -1
- data/lib/super_diff/active_support/operation_trees.rb +1 -1
- data/lib/super_diff/active_support.rb +6 -10
- data/lib/super_diff/colorized_document_extensions.rb +2 -4
- data/lib/super_diff/configuration.rb +14 -8
- data/lib/super_diff/csi/color.rb +4 -4
- data/lib/super_diff/csi/colorized_document.rb +12 -16
- data/lib/super_diff/csi/document.rb +8 -19
- data/lib/super_diff/csi/eight_bit_color.rb +19 -19
- data/lib/super_diff/csi/four_bit_color.rb +82 -31
- data/lib/super_diff/csi/twenty_four_bit_color.rb +12 -11
- data/lib/super_diff/csi/uncolorized_document.rb +2 -6
- data/lib/super_diff/csi.rb +10 -14
- data/lib/super_diff/diff_formatters/collection.rb +35 -41
- data/lib/super_diff/differs/date_like.rb +15 -0
- data/lib/super_diff/differs/default_object.rb +1 -1
- data/lib/super_diff/differs/defaults.rb +2 -1
- data/lib/super_diff/differs/main.rb +2 -13
- data/lib/super_diff/differs.rb +1 -0
- data/lib/super_diff/equality_matchers/array.rb +10 -12
- data/lib/super_diff/equality_matchers/base.rb +1 -1
- data/lib/super_diff/equality_matchers/default.rb +2 -4
- data/lib/super_diff/equality_matchers/defaults.rb +1 -1
- data/lib/super_diff/equality_matchers/hash.rb +10 -12
- data/lib/super_diff/equality_matchers/multiline_string.rb +11 -13
- data/lib/super_diff/equality_matchers/primitive.rb +10 -12
- data/lib/super_diff/equality_matchers/singleline_string.rb +10 -12
- data/lib/super_diff/equality_matchers.rb +1 -1
- data/lib/super_diff/errors.rb +2 -6
- data/lib/super_diff/gem_version.rb +3 -3
- data/lib/super_diff/helpers.rb +10 -10
- data/lib/super_diff/implementation_checks.rb +2 -2
- data/lib/super_diff/line.rb +3 -3
- data/lib/super_diff/object_inspection/inspection_tree.rb +64 -73
- data/lib/super_diff/object_inspection/inspection_tree_builders/array.rb +29 -14
- data/lib/super_diff/object_inspection/inspection_tree_builders/custom_object.rb +17 -13
- data/lib/super_diff/object_inspection/inspection_tree_builders/date_like.rb +51 -0
- data/lib/super_diff/object_inspection/inspection_tree_builders/default_object.rb +43 -27
- data/lib/super_diff/object_inspection/inspection_tree_builders/defaults.rb +2 -1
- data/lib/super_diff/object_inspection/inspection_tree_builders/hash.rb +35 -18
- data/lib/super_diff/object_inspection/inspection_tree_builders/primitive.rb +3 -5
- data/lib/super_diff/object_inspection/inspection_tree_builders/time_like.rb +30 -36
- data/lib/super_diff/object_inspection/inspection_tree_builders.rb +13 -9
- data/lib/super_diff/object_inspection/nodes/as_lines_when_rendering_to_lines.rb +11 -22
- data/lib/super_diff/object_inspection/nodes/as_prefix_when_rendering_to_lines.rb +1 -5
- data/lib/super_diff/object_inspection/nodes/as_prelude_when_rendering_to_lines.rb +1 -5
- data/lib/super_diff/object_inspection/nodes/as_single_line.rb +3 -7
- data/lib/super_diff/object_inspection/nodes/base.rb +9 -14
- data/lib/super_diff/object_inspection/nodes/inspection.rb +26 -34
- data/lib/super_diff/object_inspection/nodes/nesting.rb +1 -1
- data/lib/super_diff/object_inspection/nodes/only_when.rb +2 -6
- data/lib/super_diff/object_inspection/nodes/text.rb +1 -5
- data/lib/super_diff/object_inspection/nodes/when_empty.rb +2 -6
- data/lib/super_diff/object_inspection/nodes/when_non_empty.rb +2 -6
- data/lib/super_diff/object_inspection/nodes/when_rendering_to_lines.rb +1 -1
- data/lib/super_diff/object_inspection/nodes/when_rendering_to_string.rb +1 -5
- data/lib/super_diff/object_inspection/nodes.rb +7 -7
- data/lib/super_diff/object_inspection.rb +3 -3
- data/lib/super_diff/operation_tree_builders/array.rb +12 -11
- data/lib/super_diff/operation_tree_builders/base.rb +17 -15
- data/lib/super_diff/operation_tree_builders/custom_object.rb +8 -6
- data/lib/super_diff/operation_tree_builders/date_like.rb +15 -0
- data/lib/super_diff/operation_tree_builders/default_object.rb +29 -21
- data/lib/super_diff/operation_tree_builders/defaults.rb +1 -1
- data/lib/super_diff/operation_tree_builders/hash.rb +23 -24
- data/lib/super_diff/operation_tree_builders/main.rb +4 -11
- data/lib/super_diff/operation_tree_builders/multiline_string.rb +3 -3
- data/lib/super_diff/operation_tree_builders/time_like.rb +1 -11
- data/lib/super_diff/operation_tree_builders.rb +2 -1
- data/lib/super_diff/operation_tree_flatteners/base.rb +1 -5
- data/lib/super_diff/operation_tree_flatteners/collection.rb +13 -16
- data/lib/super_diff/operation_tree_flatteners/default_object.rb +1 -2
- data/lib/super_diff/operation_tree_flatteners/hash.rb +2 -10
- data/lib/super_diff/operation_tree_flatteners/multiline_string.rb +2 -1
- data/lib/super_diff/operation_tree_flatteners.rb +3 -3
- data/lib/super_diff/operation_trees/base.rb +3 -5
- data/lib/super_diff/operation_trees/default_object.rb +1 -3
- data/lib/super_diff/operations/binary_operation.rb +2 -2
- data/lib/super_diff/operations/unary_operation.rb +1 -1
- data/lib/super_diff/rails.rb +2 -1
- data/lib/super_diff/recursion_guard.rb +5 -4
- data/lib/super_diff/rspec/augmented_matcher.rb +4 -5
- data/lib/super_diff/rspec/differ.rb +6 -13
- data/lib/super_diff/rspec/differs/collection_containing_exactly.rb +3 -2
- data/lib/super_diff/rspec/differs/collection_including.rb +1 -1
- data/lib/super_diff/rspec/differs/hash_including.rb +1 -1
- data/lib/super_diff/rspec/differs.rb +3 -3
- data/lib/super_diff/rspec/matcher_text_builders/base.rb +13 -15
- data/lib/super_diff/rspec/matcher_text_builders/be_predicate.rb +5 -7
- data/lib/super_diff/rspec/matcher_text_builders/have_predicate.rb +3 -5
- data/lib/super_diff/rspec/matcher_text_builders/raise_error.rb +2 -10
- data/lib/super_diff/rspec/matcher_text_builders/respond_to.rb +2 -6
- data/lib/super_diff/rspec/matcher_text_builders.rb +5 -8
- data/lib/super_diff/rspec/matcher_text_template.rb +13 -16
- data/lib/super_diff/rspec/monkey_patches.rb +180 -123
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders/collection_containing_exactly.rb +14 -7
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders/collection_including.rb +21 -13
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders/double.rb +35 -36
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders/generic_describable_matcher.rb +19 -0
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders/hash_including.rb +21 -15
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders/instance_of.rb +11 -10
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders/kind_of.rb +11 -10
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders/object_having_attributes.rb +14 -7
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders/value_within.rb +10 -11
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders.rb +13 -9
- data/lib/super_diff/rspec/object_inspection.rb +1 -1
- data/lib/super_diff/rspec/operation_tree_builders/collection_containing_exactly.rb +11 -10
- data/lib/super_diff/rspec/operation_tree_builders/collection_including.rb +7 -6
- data/lib/super_diff/rspec/operation_tree_builders/hash_including.rb +11 -10
- data/lib/super_diff/rspec/operation_tree_builders/object_having_attributes.rb +22 -17
- data/lib/super_diff/rspec/operation_tree_builders.rb +4 -4
- data/lib/super_diff/rspec.rb +17 -18
- data/lib/super_diff/tiered_lines_elider.rb +87 -115
- data/lib/super_diff/tiered_lines_formatter.rb +5 -9
- data/lib/super_diff/version.rb +1 -1
- data/lib/super_diff.rb +13 -9
- data/spec/examples.txt +541 -483
- data/spec/integration/rails/active_record_spec.rb +3 -1
- data/spec/integration/rails/engines_spec.rb +25 -0
- data/spec/integration/rails/hash_with_indifferent_access_spec.rb +3 -1
- data/spec/integration/rspec/be_falsey_matcher_spec.rb +40 -35
- data/spec/integration/rspec/be_matcher_spec.rb +360 -320
- data/spec/integration/rspec/be_nil_matcher_spec.rb +38 -34
- data/spec/integration/rspec/be_predicate_matcher_spec.rb +376 -359
- data/spec/integration/rspec/be_truthy_matcher_spec.rb +38 -33
- data/spec/integration/rspec/contain_exactly_matcher_spec.rb +257 -254
- data/spec/integration/rspec/eq_matcher_spec.rb +695 -585
- data/spec/integration/rspec/generic_describable_matchers_spec.rb +177 -0
- data/spec/integration/rspec/have_attributes_matcher_spec.rb +312 -304
- data/spec/integration/rspec/have_predicate_matcher_spec.rb +291 -297
- data/spec/integration/rspec/include_matcher_spec.rb +327 -225
- data/spec/integration/rspec/magic_metadata_spec.rb +51 -0
- data/spec/integration/rspec/match_array_matcher_spec.rb +294 -291
- data/spec/integration/rspec/match_matcher_spec.rb +916 -903
- data/spec/integration/rspec/raise_error_matcher_spec.rb +1208 -449
- data/spec/integration/rspec/respond_to_matcher_spec.rb +702 -697
- data/spec/integration/rspec/third_party_matcher_spec.rb +142 -138
- data/spec/integration/rspec/unhandled_errors_spec.rb +88 -84
- data/spec/internal/log/test.log +0 -0
- data/spec/spec_helper.rb +20 -20
- data/spec/support/command_runner.rb +34 -57
- data/spec/support/integration/helpers.rb +44 -32
- data/spec/support/integration/matchers/produce_output_when_run_matcher.rb +28 -23
- data/spec/support/integration/matchers.rb +34 -0
- data/spec/support/integration/test_programs/base.rb +17 -22
- data/spec/support/integration/test_programs/plain.rb +6 -0
- data/spec/support/integration/test_programs/rspec_active_record.rb +4 -1
- data/spec/support/integration/test_programs/rspec_active_support.rb +4 -1
- data/spec/support/integration/test_programs/rspec_rails.rb +4 -1
- data/spec/support/integration/test_programs/rspec_rails_engine.rb +20 -0
- data/spec/support/models/active_record/person.rb +6 -4
- data/spec/support/models/active_record/shipping_address.rb +9 -10
- data/spec/support/models/customer.rb +2 -4
- data/spec/support/models/player.rb +3 -6
- data/spec/support/models/shipping_address.rb +4 -13
- data/spec/support/shared_examples/active_record.rb +258 -240
- data/spec/support/shared_examples/active_support.rb +174 -51
- data/spec/support/shared_examples/elided_diffs.rb +447 -423
- data/spec/support/shared_examples/hash_with_indifferent_access.rb +500 -464
- data/spec/support/shared_examples/key.rb +123 -0
- data/spec/support/unit/helpers.rb +1 -3
- data/spec/support/unit/matchers/match_output.rb +12 -13
- data/spec/unit/active_record/object_inspection_spec.rb +222 -206
- data/spec/unit/active_support/object_inspection_spec.rb +170 -0
- data/spec/unit/equality_matchers/main_spec.rb +1049 -984
- data/spec/unit/helpers_spec.rb +14 -21
- data/spec/unit/operation_tree_flatteners/array_spec.rb +557 -524
- data/spec/unit/operation_tree_flatteners/custom_object_spec.rb +619 -601
- data/spec/unit/operation_tree_flatteners/default_object_spec.rb +619 -621
- data/spec/unit/operation_tree_flatteners/hash_spec.rb +595 -556
- data/spec/unit/operation_tree_flatteners/multiline_string_spec.rb +102 -92
- data/spec/unit/rspec/matchers/be_compared_to_spec.rb +3 -3
- data/spec/unit/rspec/matchers/be_predicate_spec.rb +3 -3
- data/spec/unit/rspec/matchers/contain_exactly_spec.rb +1 -1
- data/spec/unit/rspec/matchers/have_attributes_spec.rb +1 -1
- data/spec/unit/rspec/matchers/have_predicate_spec.rb +2 -2
- data/spec/unit/rspec/matchers/include_spec.rb +2 -2
- data/spec/unit/rspec/matchers/match_array_spec.rb +2 -2
- data/spec/unit/rspec/matchers/raise_error_spec.rb +43 -11
- data/spec/unit/rspec/matchers/respond_to_spec.rb +23 -16
- data/spec/unit/rspec/object_inspection/rspec_matcher_spec.rb +91 -0
- data/spec/unit/rspec/object_inspection_spec.rb +351 -326
- data/spec/unit/super_diff_spec.rb +1594 -1437
- data/spec/unit/tiered_lines_elider_spec.rb +3508 -3536
- data/spec/unit/tiered_lines_formatter_spec.rb +54 -116
- data/super_diff.gemspec +13 -12
- metadata +88 -75
- data/lib/super_diff/errors/no_diff_formatter_available_error.rb +0 -21
- data/lib/super_diff/errors/no_operational_sequencer_available_error.rb +0 -22
- data/spec/tmp/warnings_logger/all_warnings.txt +0 -2
@@ -1,64 +1,187 @@
|
|
1
1
|
shared_examples_for "integration with ActiveSupport" do
|
2
|
-
context "when comparing two different Time and ActiveSupport::TimeWithZone instances",
|
2
|
+
context "when comparing two different Time and ActiveSupport::TimeWithZone instances",
|
3
|
+
active_record: true do
|
3
4
|
it "produces the correct failure message when used in the positive" do
|
4
5
|
as_both_colored_and_uncolored do |color_enabled|
|
5
6
|
snippet = <<~RUBY
|
6
|
-
|
7
|
-
|
8
|
-
expect(
|
7
|
+
actual = Time.utc(2011, 12, 13, 14, 15, 16)
|
8
|
+
expected = Time.utc(2011, 12, 13, 15, 15, 16).in_time_zone("Europe/Stockholm")
|
9
|
+
expect(actual).to eq(expected)
|
9
10
|
RUBY
|
10
|
-
program =
|
11
|
-
snippet,
|
12
|
-
|
11
|
+
program =
|
12
|
+
make_rspec_rails_test_program(snippet, color_enabled: color_enabled)
|
13
|
+
|
14
|
+
expected_output =
|
15
|
+
build_expected_output(
|
16
|
+
color_enabled: color_enabled,
|
17
|
+
snippet: "expect(actual).to eq(expected)",
|
18
|
+
expectation:
|
19
|
+
proc do
|
20
|
+
line do
|
21
|
+
plain "Expected "
|
22
|
+
actual "#<Time 2011-12-13 14:15:16 +00:00 (UTC)>"
|
23
|
+
end
|
24
|
+
|
25
|
+
line do
|
26
|
+
plain " to eq "
|
27
|
+
expected "#<ActiveSupport::TimeWithZone 2011-12-13 16:15:16 +01:00 (CET)>"
|
28
|
+
end
|
29
|
+
end,
|
30
|
+
diff:
|
31
|
+
proc do
|
32
|
+
plain_line " #<Time {"
|
33
|
+
plain_line " year: 2011,"
|
34
|
+
plain_line " month: 12,"
|
35
|
+
plain_line " day: 13,"
|
36
|
+
expected_line "- hour: 16,"
|
37
|
+
actual_line "+ hour: 14,"
|
38
|
+
plain_line " min: 15,"
|
39
|
+
plain_line " sec: 16,"
|
40
|
+
plain_line " subsec: 0,"
|
41
|
+
expected_line %|- zone: \"CET\",|
|
42
|
+
actual_line %|+ zone: \"UTC\",|
|
43
|
+
expected_line "- utc_offset: 3600,"
|
44
|
+
actual_line "+ utc_offset: 0,"
|
45
|
+
plain_line " utc: #<Time {"
|
46
|
+
plain_line " year: 2011,"
|
47
|
+
plain_line " month: 12,"
|
48
|
+
plain_line " day: 13,"
|
49
|
+
expected_line "- hour: 15,"
|
50
|
+
actual_line "+ hour: 14,"
|
51
|
+
plain_line " min: 15,"
|
52
|
+
plain_line " sec: 16,"
|
53
|
+
plain_line " subsec: 0,"
|
54
|
+
plain_line %| zone: "UTC",|
|
55
|
+
plain_line " utc_offset: 0"
|
56
|
+
plain_line " }>"
|
57
|
+
plain_line " }>"
|
58
|
+
end
|
59
|
+
)
|
60
|
+
|
61
|
+
expect(program).to produce_output_when_run(expected_output).in_color(
|
62
|
+
color_enabled
|
13
63
|
)
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
context "when comparing OrderedOptions and Hash instances",
|
69
|
+
active_record: true do
|
70
|
+
it "produces the correct failure message when used in the positive" do
|
71
|
+
as_both_colored_and_uncolored do |color_enabled|
|
72
|
+
snippet = <<~RUBY
|
73
|
+
actual = {beep: :bip}
|
74
|
+
expected = ::ActiveSupport::OrderedOptions[beep: :boop]
|
75
|
+
expect(actual).to eq(expected)
|
76
|
+
RUBY
|
77
|
+
program =
|
78
|
+
make_rspec_rails_test_program(snippet, color_enabled: color_enabled)
|
14
79
|
|
15
|
-
expected_output =
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
80
|
+
expected_output =
|
81
|
+
build_expected_output(
|
82
|
+
color_enabled: color_enabled,
|
83
|
+
snippet: "expect(actual).to eq(expected)",
|
84
|
+
expectation:
|
85
|
+
proc do
|
86
|
+
line do
|
87
|
+
plain "Expected "
|
88
|
+
actual "{ beep: :bip }"
|
89
|
+
plain " to eq "
|
90
|
+
expected "#<OrderedOptions { beep: :boop }>"
|
91
|
+
plain "."
|
92
|
+
end
|
93
|
+
end,
|
94
|
+
diff:
|
95
|
+
proc do
|
96
|
+
plain_line " {"
|
97
|
+
expected_line "- beep: :boop"
|
98
|
+
actual_line "+ beep: :bip"
|
99
|
+
plain_line " }"
|
100
|
+
end
|
101
|
+
)
|
23
102
|
|
24
|
-
|
25
|
-
|
26
|
-
expected %|#<ActiveSupport::TimeWithZone 2011-12-13 16:15:16 +01:00 (CET)>|
|
27
|
-
end
|
28
|
-
},
|
29
|
-
diff: proc {
|
30
|
-
plain_line %| #<Time {|
|
31
|
-
plain_line %| year: 2011,|
|
32
|
-
plain_line %| month: 12,|
|
33
|
-
plain_line %| day: 13,|
|
34
|
-
expected_line %|- hour: 16,|
|
35
|
-
actual_line %|+ hour: 14,|
|
36
|
-
plain_line %| min: 15,|
|
37
|
-
plain_line %| sec: 16,|
|
38
|
-
plain_line %| subsec: 0,|
|
39
|
-
expected_line %|- zone: \"CET\",|
|
40
|
-
actual_line %|+ zone: \"UTC\",|
|
41
|
-
expected_line %|- utc_offset: 3600,|
|
42
|
-
actual_line %|+ utc_offset: 0,|
|
43
|
-
plain_line %| utc: #<Time {|
|
44
|
-
plain_line %| year: 2011,|
|
45
|
-
plain_line %| month: 12,|
|
46
|
-
plain_line %| day: 13,|
|
47
|
-
expected_line %|- hour: 15,|
|
48
|
-
actual_line %|+ hour: 14,|
|
49
|
-
plain_line %| min: 15,|
|
50
|
-
plain_line %| sec: 16,|
|
51
|
-
plain_line %| subsec: 0,|
|
52
|
-
plain_line %| zone: "UTC",|
|
53
|
-
plain_line %| utc_offset: 0|
|
54
|
-
plain_line %| }>|
|
55
|
-
plain_line %| }>|
|
56
|
-
},
|
103
|
+
expect(program).to produce_output_when_run(expected_output).in_color(
|
104
|
+
color_enabled
|
57
105
|
)
|
106
|
+
end
|
107
|
+
end
|
108
|
+
end
|
58
109
|
|
59
|
-
|
60
|
-
|
61
|
-
|
110
|
+
context "when comparing Date instance and date-like DateTime instance for same day",
|
111
|
+
active_record: true do
|
112
|
+
it "produces the correct failure message when used in the positive" do
|
113
|
+
as_both_colored_and_uncolored do |color_enabled|
|
114
|
+
snippet = <<~RUBY
|
115
|
+
actual = Date.new(2023, 10, 14)
|
116
|
+
expected = DateTime.new(2023, 10, 14, 18, 22, 26)
|
117
|
+
expect(actual).to eq(expected)
|
118
|
+
RUBY
|
119
|
+
program =
|
120
|
+
make_rspec_rails_test_program(snippet, color_enabled: color_enabled)
|
121
|
+
|
122
|
+
expected_output =
|
123
|
+
build_expected_output(
|
124
|
+
color_enabled: color_enabled,
|
125
|
+
snippet: "expect(actual).to eq(expected)",
|
126
|
+
expectation:
|
127
|
+
proc do
|
128
|
+
line do
|
129
|
+
plain "Expected "
|
130
|
+
actual "#<Date 2023-10-14>"
|
131
|
+
plain " to eq "
|
132
|
+
expected "#<DateTime 2023-10-14 18:22:26 +00:00 (+00:00)>"
|
133
|
+
plain "."
|
134
|
+
end
|
135
|
+
end
|
136
|
+
)
|
137
|
+
|
138
|
+
expect(program).to produce_output_when_run(expected_output).in_color(
|
139
|
+
color_enabled
|
140
|
+
)
|
141
|
+
end
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
context "when comparing Date instance and date-like DateTime instance for another day",
|
146
|
+
active_record: true do
|
147
|
+
it "produces the diff for date like objects comparison" do
|
148
|
+
as_both_colored_and_uncolored do |color_enabled|
|
149
|
+
snippet = <<~RUBY
|
150
|
+
actual = Date.new(2023, 10, 14)
|
151
|
+
expected = DateTime.new(2023, 10, 31, 18, 22, 26)
|
152
|
+
expect(actual).to eq(expected)
|
153
|
+
RUBY
|
154
|
+
program =
|
155
|
+
make_rspec_rails_test_program(snippet, color_enabled: color_enabled)
|
156
|
+
|
157
|
+
expected_output =
|
158
|
+
build_expected_output(
|
159
|
+
color_enabled: color_enabled,
|
160
|
+
snippet: "expect(actual).to eq(expected)",
|
161
|
+
expectation:
|
162
|
+
proc do
|
163
|
+
line do
|
164
|
+
plain "Expected "
|
165
|
+
actual "#<Date 2023-10-14>"
|
166
|
+
plain " to eq "
|
167
|
+
expected "#<DateTime 2023-10-31 18:22:26 +00:00 (+00:00)>"
|
168
|
+
plain "."
|
169
|
+
end
|
170
|
+
end,
|
171
|
+
diff:
|
172
|
+
proc do
|
173
|
+
plain_line " #<Date {"
|
174
|
+
plain_line " year: 2023,"
|
175
|
+
plain_line " month: 10,"
|
176
|
+
expected_line "- day: 31"
|
177
|
+
actual_line "+ day: 14"
|
178
|
+
plain_line " }>"
|
179
|
+
end
|
180
|
+
)
|
181
|
+
|
182
|
+
expect(program).to produce_output_when_run(expected_output).in_color(
|
183
|
+
color_enabled
|
184
|
+
)
|
62
185
|
end
|
63
186
|
end
|
64
187
|
end
|