minitest 5.26.0 → 5.26.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ecf3d390663e8f655908e6feef0796c5666930f979a0010e27d5adf4956b0bfc
4
- data.tar.gz: be16818cbc164296bdacde79856532e5695bd6e45dec7d28e624e75bbccbf465
3
+ metadata.gz: 0b434a6ca2a7c9344e640e80ea64a4b5b1849f8b6afa49c6f00766c2be0d4860
4
+ data.tar.gz: 84ae1cd082c17c1abca248bfbe841ca362c9bcb96e97c64eb524b6e46a50f94b
5
5
  SHA512:
6
- metadata.gz: 4690ff166d9757befd4365ca3ca77443e4252c32132e91933093548b179ae051cade595e1a085e373e9f6a32b4677d38073cfc1b6e386a00bf77edc8cffad487
7
- data.tar.gz: 923c90aaff33957818b8fcb053bf9fb28c01953ec910d42114cd3ba09204a0166e85824fb7188bc944f12a7855c47c0e6f63a39d2f45fcb37f25b8176416cd18
6
+ metadata.gz: 592d2b5d8f7e33ea2c7ae8e598686df07108cd6bf3ae01bdc86871d16d17708db778716edfedb9bd6723972b7191615c9d29af7dba9b2231a70f0da394787c71
7
+ data.tar.gz: 407d3eb51b95f993a6809aa15ffbfa0630d31f0f18cf01854a2c68441fcda0555fdb2d2c83f41f7e605c8d4d4ade40e3785480f035e22492a54038e26900f0e7
checksums.yaml.gz.sig CHANGED
Binary file
data/History.rdoc CHANGED
@@ -1,3 +1,24 @@
1
+ === 5.26.2 / 2025-11-17
2
+
3
+ * 5 bug fixes:
4
+
5
+ * Bumped minimum ruby to 3.1.
6
+ * Alias Spec#name to #inspect for cleaner output in repls.
7
+ * Fix pathing for Hoe::Minitest initialization to be more generic.
8
+ * Fixed refute_in_epsilon to use min of abs values. (wtn)
9
+ * Improved options processing and usage output to be more clear.
10
+
11
+ === 5.26.1 / 2025-11-08
12
+
13
+ The Ocean Shores, Slightly Less Tipsy Edition!
14
+
15
+ * 3 bug fixes:
16
+
17
+ * Add links to API doco in README.
18
+ * Add missing require thread.
19
+ * Bumped ruby version to include 4.0 (trunk). (hsbt)
20
+ (see also 5.14.2)
21
+
1
22
  === 5.26.0 / 2025-10-07
2
23
 
3
24
  The Seattle.rb Nerd Party, Slightly Tipsy Edition!
data/README.rdoc CHANGED
@@ -95,7 +95,9 @@ Given that you'd like to test the following class:
95
95
 
96
96
  === Unit tests
97
97
 
98
- Define your tests as methods beginning with +test_+.
98
+ Define your tests as methods beginning with +test_+. Use
99
+ {assertions}[/minitest/Minitest/Assertions.html] to test for results
100
+ or state.
99
101
 
100
102
  require "minitest/autorun"
101
103
 
@@ -119,6 +121,9 @@ Define your tests as methods beginning with +test_+.
119
121
 
120
122
  === Specs
121
123
 
124
+ Use {expectations}[/minitest/Minitest/Expectations.html] to check
125
+ results or state. They must be wrapped in a value call (eg +_+).
126
+
122
127
  require "minitest/autorun"
123
128
 
124
129
  describe Meme do
@@ -146,7 +151,7 @@ For matchers support check out:
146
151
 
147
152
  === Benchmarks
148
153
 
149
- Add benchmarks to your tests.
154
+ Add {benchmarks}[/minitest/Minitest/Benchmark.html] to your tests.
150
155
 
151
156
  # optionally run benchmarks, good for CI-only work!
152
157
  require "minitest/benchmark" if ENV["BENCH"]
@@ -422,13 +427,10 @@ Current versions of rails: (https://endoflife.date/rails)
422
427
 
423
428
  | rails | min ruby | minitest | status | EOL Date |
424
429
  |-------+----------+----------+----------+------------|
430
+ | 8.1 | >= 3.2 | >= 5.1 | Current | 2027-10-07 |
425
431
  | 8.0 | >= 3.2 | >= 5.1 | Current | 2026-11-07 |
426
- | 7.2 | >= 3.1 | >= 5.1 | Current | 2026-08-09 |
427
- | 7.1 | >= 2.7 | >= 5.1 | Security | 2025-10-01 |
428
- | 7.0 | >= 2.7 | >= 5.1 | Security | 2025-04-01 |
429
- | 6.1 | >= 2.5 | >= 5.1 | EOL | 2024-10-01 |
430
- | 6.0 | >= 2.5 | >= 5.1 | EOL | 2023-06-01 |
431
- | 5.2 | >= 2.2.2 | ~> 5.1 | EOL | 2022-06-01 |
432
+ | 7.2 | >= 3.1 | >= 5.1 | Security | 2026-08-09 |
433
+ | 7.1 | >= 2.7 | >= 5.1 | EOL | 2025-10-01 |
432
434
 
433
435
  If you want to look at the requirements for a specific version, run:
434
436
 
data/Rakefile CHANGED
@@ -11,7 +11,7 @@ Hoe.spec "minitest" do
11
11
 
12
12
  license "MIT"
13
13
 
14
- require_ruby_version [">= 2.7", "< 4.0"]
14
+ require_ruby_version ">= 3.1"
15
15
  end
16
16
 
17
17
  desc "Find missing expectations"
data/design_rationale.rb CHANGED
@@ -2,25 +2,27 @@
2
2
  ###############################################################################
3
3
  describe Thingy do # class TestThingy < Minitest::Test
4
4
  before do # def setup
5
- do_some_setup # super
6
- end # do_some_setup
7
- # end
8
- it "should do the first thing" do #
9
- 1.must_equal 1 # def test_first_thing
10
- end # assert_equal 1, 1
11
- # end
12
- describe SubThingy do # end
13
- before do #
14
- do_more_setup # class TestSubThingy < TestThingy
15
- end # def setup
16
5
  # super
17
- it "should do the second thing" do # do_more_setup
18
- 2.must_equal 2 # end
19
- end #
20
- end # def test_second_thing
21
- end # assert_equal 2, 2
22
- # end
6
+ do_some_setup # do_some_setup
7
+ end # end
8
+ #
9
+ it "should do the first thing" do # def test_first_thing
10
+ _(1).must_equal 1 # assert_equal 1, 1
11
+ end # end
23
12
  # end
13
+ #
14
+ describe SubThingy do # class TestSubThingy < TestThingy
15
+ before do # def setup
16
+ # super
17
+ do_more_setup # do_more_setup
18
+ end # end
19
+ #
20
+ it "should do the second thing" do # def test_second_thing
21
+ _(2).must_equal 2 # assert_equal 2, 2
22
+ end # end
23
+ end # end
24
+ end #
25
+ #
24
26
  ###############################################################################
25
27
  # runs 2 specs # runs 3 tests
26
28
  ###############################################################################
@@ -33,7 +35,7 @@ class ThingySpec < Minitest::Spec
33
35
  end
34
36
 
35
37
  def test_should_do_the_first_thing
36
- assert_equal 1, 1
38
+ _(1).must_equal 1
37
39
  end
38
40
  end
39
41
 
@@ -47,6 +49,6 @@ class SubThingySpec < ThingySpec
47
49
  remove_method :test_should_do_the_first_thing
48
50
 
49
51
  def test_should_do_the_second_thing
50
- assert_equal 2, 2
52
+ _(2).must_equal 2
51
53
  end
52
54
  end
data/lib/hoe/minitest.rb CHANGED
@@ -11,7 +11,8 @@ module Hoe::Minitest
11
11
 
12
12
  def initialize_minitest
13
13
  unless minitest? then
14
- dir = "../../minitest/dev/lib"
14
+ dir = File.expand_path "../..", __FILE__
15
+
15
16
  Hoe.add_include_dirs dir if File.directory? dir
16
17
  end
17
18
 
@@ -687,8 +687,8 @@ module Minitest
687
687
  # For comparing Floats. Fails if +exp+ and +act+ have a relative error
688
688
  # less than +epsilon+.
689
689
 
690
- def refute_in_epsilon a, b, epsilon = 0.001, msg = nil
691
- refute_in_delta a, b, a * epsilon, msg
690
+ def refute_in_epsilon exp, act, epsilon = 0.001, msg = nil
691
+ refute_in_delta exp, act, [exp.abs, act.abs].min * epsilon, msg
692
692
  end
693
693
 
694
694
  ##
data/lib/minitest/mock.rb CHANGED
@@ -33,17 +33,9 @@ module Minitest # :nodoc:
33
33
  old_w, $-w = $-w, nil
34
34
  define_method method_id do |*args, **kwargs, &b|
35
35
  if @expected_calls.key? method_id then
36
- if kwargs.empty? then # FIX: drop this after 2.7 dead
37
- method_missing(method_id, *args, &b)
38
- else
39
- method_missing(method_id, *args, **kwargs, &b)
40
- end
36
+ method_missing(method_id, *args, **kwargs, &b)
41
37
  else
42
- if kwargs.empty? then # FIX: drop this after 2.7 dead
43
- super(*args, &b)
44
- else
45
- super(*args, **kwargs, &b)
46
- end
38
+ super(*args, **kwargs, &b)
47
39
  end
48
40
  end
49
41
  ensure
@@ -155,11 +147,7 @@ module Minitest # :nodoc:
155
147
  def method_missing sym, *args, **kwargs, &block # :nodoc:
156
148
  unless @expected_calls.key? sym then
157
149
  if @delegator && @delegator.respond_to?(sym)
158
- if kwargs.empty? then # FIX: drop this after 2.7 dead
159
- return @delegator.public_send(sym, *args, &block)
160
- else
161
- return @delegator.public_send(sym, *args, **kwargs, &block)
162
- end
150
+ return @delegator.public_send(sym, *args, **kwargs, &block)
163
151
  else
164
152
  raise NoMethodError, "unmocked method %p, expected one of %p" %
165
153
  [sym, @expected_calls.keys.sort_by(&:to_s)]
@@ -320,18 +308,10 @@ class Object
320
308
  else
321
309
  metaclass.send :define_method, name do |*args, **kwargs, &blk|
322
310
  if val_or_callable.respond_to? :call then
323
- if kwargs.empty? then # FIX: drop this after 2.7 dead
324
- val_or_callable.call(*args, &blk)
325
- else
326
- val_or_callable.call(*args, **kwargs, &blk)
327
- end
311
+ val_or_callable.call(*args, **kwargs, &blk)
328
312
  else
329
313
  if blk then
330
- if block_kwargs.empty? then # FIX: drop this after 2.7 dead
331
- blk.call(*block_args)
332
- else
333
- blk.call(*block_args, **block_kwargs)
334
- end
314
+ blk.call(*block_args, **block_kwargs)
335
315
  end
336
316
  val_or_callable
337
317
  end
@@ -1,3 +1,5 @@
1
+ require "thread"
2
+
1
3
  module Minitest
2
4
  module Parallel # :nodoc:
3
5
 
data/lib/minitest/spec.rb CHANGED
@@ -290,6 +290,7 @@ class Minitest::Spec < Minitest::Test
290
290
  end
291
291
 
292
292
  alias to_s name
293
+ alias inspect name
293
294
 
294
295
  attr_reader :desc # :nodoc:
295
296
  alias specify it
data/lib/minitest.rb CHANGED
@@ -10,7 +10,7 @@ require_relative "minitest/compress"
10
10
  # runtime. See +Minitest.run+ for more information.
11
11
 
12
12
  module Minitest
13
- VERSION = "5.26.0" # :nodoc:
13
+ VERSION = "5.26.2" # :nodoc:
14
14
 
15
15
  @@installed_at_exit ||= false
16
16
  @@after_run = []
@@ -147,26 +147,32 @@ module Minitest
147
147
  orig_args = args.dup
148
148
 
149
149
  OptionParser.new do |opts|
150
- opts.banner = "minitest options:"
150
+ opts.program_name = "minitest"
151
151
  opts.version = Minitest::VERSION
152
152
 
153
+ opts.banner = [
154
+ "Usage: rake test [A=options] (see Minitest::TestTask for more options)",
155
+ "minitest [paths] [options] (with minitest-sprint gem)",
156
+ "ruby path/to/test.rb [options]\n\n",
157
+ ].join "\n or: "
158
+
153
159
  opts.on "-h", "--help", "Display this help." do
154
160
  puts opts
155
161
  exit
156
162
  end
157
163
 
158
- opts.on "--no-plugins", "Bypass minitest plugin auto-loading (or set $MT_NO_PLUGINS)."
164
+ opts.on "--no-plugins", "Bypass minitest plugin auto-loading (or env: MT_NO_PLUGINS=1)."
159
165
 
160
- desc = "Sets random seed. Also via env. Eg: SEED=n rake"
166
+ desc = "Sets random seed. Also via env, eg: SEED=42"
161
167
  opts.on "-s", "--seed SEED", Integer, desc do |m|
162
- options[:seed] = m.to_i
168
+ options[:seed] = m
163
169
  end
164
170
 
165
- opts.on "-v", "--verbose", "Verbose. Show progress processing files." do
171
+ opts.on "-v", "--verbose", "Verbose. Print each name as they run." do
166
172
  options[:verbose] = true
167
173
  end
168
174
 
169
- opts.on "-q", "--quiet", "Quiet. Show no progress processing files." do
175
+ opts.on "-q", "--quiet", "Quiet. Show no dots while processing files." do
170
176
  options[:quiet] = true
171
177
  end
172
178
 
@@ -174,7 +180,7 @@ module Minitest
174
180
  options[:show_skips] = true
175
181
  end
176
182
 
177
- opts.on "-n", "--name PATTERN", "Filter run on /regexp/ or string." do |a|
183
+ opts.on "-n", "--name PATTERN", "Include /regexp/ or string for run." do |a|
178
184
  options[:filter] = a
179
185
  end
180
186
 
@@ -182,21 +188,28 @@ module Minitest
182
188
  options[:exclude] = a
183
189
  end
184
190
 
191
+ # omg wtf
192
+ def opts.short_alias(from, to) = top.short[to] = top.short[from]
193
+ def opts.long_alias(from, to) = top.long[to] = top.long[from]
194
+
195
+ # these will work but won't show up in --help output:
196
+ opts.long_alias "name", "include"
197
+ opts.short_alias "n", "i"
198
+ opts.short_alias "e", "x"
199
+
185
200
  opts.on "-S", "--skip CODES", String, "Skip reporting of certain types of results (eg E)." do |s|
186
201
  options[:skip] = s.chars.to_a
187
202
  end
188
203
 
189
- ruby27plus = ::Warning.respond_to? :[]=
190
-
191
204
  opts.on "-W[error]", String, "Turn Ruby warnings into errors" do |s|
192
205
  options[:Werror] = true
193
206
  case s
194
207
  when "error", "all", nil then
195
208
  require "minitest/error_on_warning"
196
209
  $VERBOSE = true
197
- ::Warning[:deprecated] = true if ruby27plus
210
+ ::Warning[:deprecated] = true
198
211
  else
199
- ::Warning[s.to_sym] = true if ruby27plus # check validity of category
212
+ ::Warning[s.to_sym] = true # check validity of category
200
213
  end
201
214
  end
202
215
 
@@ -411,6 +424,7 @@ module Minitest
411
424
  pos = Regexp.new $1 if pos.kind_of?(String) && pos =~ %r%/(.*)/%
412
425
  neg = Regexp.new $1 if neg.kind_of?(String) && neg =~ %r%/(.*)/%
413
426
 
427
+ # at most 1-2% slower than a 1-pass version, stop optimizing this
414
428
  filtered_methods = self.runnable_methods
415
429
  .select { |m| !pos || pos === m || pos === "#{self}##{m}" }
416
430
  .reject { |m| neg && (neg === m || neg === "#{self}##{m}") }
@@ -574,7 +588,7 @@ module Minitest
574
588
  def skipped?
575
589
  raise NotImplementedError, "subclass responsibility"
576
590
  end
577
- end
591
+ end # Runnable
578
592
 
579
593
  ##
580
594
  # Shared code for anything that can get passed to a Reporter. See
@@ -626,7 +640,7 @@ module Minitest
626
640
  def error?
627
641
  self.failures.any? UnexpectedError
628
642
  end
629
- end
643
+ end # Reportable
630
644
 
631
645
  ##
632
646
  # This represents a test result in a clean way that can be
@@ -680,7 +694,7 @@ module Minitest
680
694
  "#{failure.result_label}:\n#{self.location}:\n#{failure.message}\n"
681
695
  }.join "\n"
682
696
  end
683
- end
697
+ end # Result
684
698
 
685
699
  ##
686
700
  # Defines the API for Reporters. Subclass this and override whatever
@@ -730,7 +744,7 @@ module Minitest
730
744
  def synchronize &block # :nodoc:
731
745
  @mutex.synchronize(&block)
732
746
  end
733
- end
747
+ end # AbstractReportera
734
748
 
735
749
  class Reporter < AbstractReporter # :nodoc:
736
750
  ##
@@ -885,7 +899,7 @@ module Minitest
885
899
  self.warnings = aggregate[UnexpectedWarning].size
886
900
  self.skips = aggregate[Skip].size
887
901
  end
888
- end
902
+ end # StatisticsReporter
889
903
 
890
904
  ##
891
905
  # A reporter that prints the header, summary, and failure details at
@@ -963,7 +977,7 @@ module Minitest
963
977
  "%d runs, %d assertions, %d failures, %d errors, %d skips%s" %
964
978
  [count, assertions, failures, errors, skips, extra.join]
965
979
  end
966
- end
980
+ end # SummaryReporter
967
981
 
968
982
  ##
969
983
  # Dispatch to multiple reporters as one.
@@ -1014,7 +1028,7 @@ module Minitest
1014
1028
  def report # :nodoc:
1015
1029
  self.reporters.each(&:report)
1016
1030
  end
1017
- end
1031
+ end # CompositeReporter
1018
1032
 
1019
1033
  ##
1020
1034
  # Represents run failures.
@@ -142,8 +142,7 @@ class TestMinitestAssertions < Minitest::Test
142
142
  exp[1] = Object.new
143
143
  act[1] = Object.new
144
144
  act_obj = act[1]
145
- # TODO: switch to endless when 2.7 is dropped
146
- act_obj.define_singleton_method(:inspect) { "#<Object:0xXXXXXX>" }
145
+ def act_obj.inspect = "#<Object:0xXXXXXX>"
147
146
  msg = <<~EOM.chomp % [act]
148
147
  No visible difference in the Hash#inspect output.
149
148
  You should look at the implementation of #== on Hash or its members.
@@ -1280,12 +1279,16 @@ class TestMinitestAssertions < Minitest::Test
1280
1279
  end
1281
1280
 
1282
1281
  def test_refute_in_epsilon_triggered
1283
- assert_triggered "Expected |10000 - 9990| (10) to not be <= 10.0." do
1284
- @tc.refute_in_epsilon 10_000, 9990
1282
+ assert_triggered "Expected |10000 - 9991| (9) to not be <= 9.991." do
1283
+ @tc.refute_in_epsilon 10_000, 9991
1285
1284
  flunk
1286
1285
  end
1287
1286
  end
1288
1287
 
1288
+ def test_refute_in_epsilon_minimum
1289
+ @tc.refute_in_epsilon 10_000, 9990
1290
+ end
1291
+
1289
1292
  def test_refute_includes
1290
1293
  @assertion_count = 2
1291
1294
 
@@ -368,11 +368,7 @@ class TestMinitestMock < Minitest::Test
368
368
  end
369
369
 
370
370
  assert_silent do
371
- if RUBY_VERSION > "3" then
372
- mock.foo arg1, arg2, arg3
373
- else
374
- mock.foo arg1, arg2, **arg3 # oddity just for ruby 2.7
375
- end
371
+ mock.foo arg1, arg2, arg3
376
372
  end
377
373
 
378
374
  assert_mock mock
@@ -401,8 +397,8 @@ class TestMinitestMock < Minitest::Test
401
397
  mock.foo k1: arg1, k2: arg2
402
398
  end
403
399
 
404
- # basically testing ruby ... need ? for ruby < 2.7 :(
405
- assert_match(/missing keyword: :?k3/, e.message)
400
+ # basically testing ruby
401
+ assert_match(/missing keyword: :k3/, e.message)
406
402
  end
407
403
 
408
404
  def test_mock_block_is_passed_keyword_args__block_bad_extra
@@ -416,8 +412,7 @@ class TestMinitestMock < Minitest::Test
416
412
  mock.foo k1: arg1, k2: arg2, k3: arg3
417
413
  end
418
414
 
419
- # basically testing ruby ... need ? for ruby < 2.7 :(
420
- assert_match(/unknown keyword: :?k3/, e.message)
415
+ assert_match(/unknown keyword: :k3/, e.message)
421
416
  end
422
417
 
423
418
  def test_mock_block_is_passed_keyword_args__block_bad_value
@@ -108,7 +108,7 @@ describe Minitest::Spec do
108
108
  end
109
109
 
110
110
  it "needs to catch an expected exception" do
111
- @assertion_count = 2
111
+ @assertion_count -= 2
112
112
 
113
113
  expect { raise "blah" }.must_raise RuntimeError
114
114
  expect { raise Minitest::Assertion }.must_raise Minitest::Assertion
@@ -939,6 +939,16 @@ class TestMeta < MetaMetaMetaTestCase
939
939
  assert_equal "ExampleB::random_method::addl_context", spec_c.name
940
940
  end
941
941
 
942
+ def test_inspect
943
+ spec_a = describe ExampleA do; end
944
+ spec_b = describe ExampleB, :random_method do; end
945
+ spec_c = describe ExampleB, :random_method, :addl_context do; end
946
+
947
+ assert_equal "ExampleA", spec_a.inspect
948
+ assert_equal "ExampleB::random_method", spec_b.inspect
949
+ assert_equal "ExampleB::random_method::addl_context", spec_c.inspect
950
+ end
951
+
942
952
  def test_name2
943
953
  assert_equal "NamedExampleA", NamedExampleA.name
944
954
  assert_equal "NamedExampleB", NamedExampleB.name
data.tar.gz.sig CHANGED
@@ -1,2 +1 @@
1
- �� ��I?����g��!�E%�ws7����Q\aS�Œ8x�N���X��4T~�h���������{>t$>�;5G��
2
- I���B�u����|K-&�?�Z%��^:i�/UP�p!��}�ڿ��QB�
1
+ W�� ��d�`)Zx��q~6��8���2aM�?�1�����Mi#ן���!� 5���y��%PJ�5�N]\�k j6_k�(�C����)H�ݘ�Pf�ܶ[��H: ;H�S�9ά�HS��^�����q�?<���qm���WŽ3��2�m�{����.x�]9��R>y�x�x���ʂ�>�4#�D!BӖ�r��'@�#淼B����;ͻ�f8��F�����ڦ�1<dMO{adz�����)Cc�
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minitest
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.26.0
4
+ version: 5.26.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Davis
@@ -175,10 +175,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
175
175
  requirements:
176
176
  - - ">="
177
177
  - !ruby/object:Gem::Version
178
- version: '2.7'
179
- - - "<"
180
- - !ruby/object:Gem::Version
181
- version: '4.0'
178
+ version: '3.1'
182
179
  required_rubygems_version: !ruby/object:Gem::Requirement
183
180
  requirements:
184
181
  - - ">="
metadata.gz.sig CHANGED
@@ -1,2 +1,2 @@
1
- UAXf�v ���d�-$#���� ,�w��L�VnFxE�$XP� �@���_�*8e7m�N��Tt��Q}"6����=yn�.�:Rb�I3�S -���Z�)��Җ���tRH,Z��g��QkŪ
2
- yd[!"�;U�#�rȔq_FD]B��NH���l��4S�� ��Rɰ��9~K�ڵd/ N٦�Ϫp�����:mI�݀�".�KO3w E ��K�ڑ��g����9L�!�}@�d٠Y
1
+ �,YXR���f�3]L�7R /�"��t�`lޚ 5� /��vkY�l)m��3F���U')�⽃�B˴�KO��:���l?��V\�{n
2
+ dlLt,Y(됛&,� ��rr\� ��E�����K�%3%<�#���CE�T՚[ h\o9m�A�����r���{):8ghP���@�ITj`2(6T��j��;�u�d�. ��]?JF��P=��yMn����eZyYR�!]qZ�h���R����K�;:�U2