From null+test-unit ¡÷ clear-code.com Mon Jan 2 03:33:46 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Mon, 02 Jan 2012 17:33:46 +0900
Subject: [test-unit-commit:00143] test-unit/test-unit [master] [test]
cleanup.
Message-ID: <20120102083358.392B99A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-02 17:33:46 +0900 (Mon, 02 Jan 2012)
New Revision: 4f8e9edc6bc8c8b1fcfb0e3d84fdfda2e67724d2
Log:
[test] cleanup.
Modified files:
test/test-fixture.rb
Modified: test/test-fixture.rb (+384 -375)
===================================================================
--- test/test-fixture.rb 2011-12-30 16:14:46 +0900 (46008c9)
+++ test/test-fixture.rb 2012-01-02 17:33:46 +0900 (8d155fa)
@@ -2,458 +2,479 @@ class TestUnitFixture < Test::Unit::TestCase
module EmptyModule
end
- def test_setup_without_option
- expected_setup_calls = [:setup,
- :custom_setup_method0,
- :custom_setup_method1,
- :custom_setup_method3]
- test_case = assert_setup(expected_setup_calls, [])
- assert_inherited_setup(expected_setup_calls, test_case)
-
- assert_inherited_setup([:setup], nil)
- assert_called_fixtures(expected_setup_calls, test_case)
- end
+ class TestSetup < self
+ def test_without_option
+ expected_setup_calls = [:setup,
+ :custom_setup_method0,
+ :custom_setup_method1,
+ :custom_setup_method3]
+ test_case = assert_setup(expected_setup_calls, [])
+ assert_inherited_setup(expected_setup_calls, test_case)
+
+ assert_inherited_setup([:setup], nil)
+ assert_called_fixtures(expected_setup_calls, test_case)
+ end
- def test_setup_with_before_option
- expected_setup_calls = [:custom_setup_method3,
- :custom_setup_method0,
- :custom_setup_method1,
- :setup]
- test_case = assert_setup(expected_setup_calls,
- [[{:before => :append}],
- [{:before => :append}],
- [{:before => :prepend}],
- [{:before => :prepend}]])
- assert_inherited_setup(expected_setup_calls, test_case)
-
- assert_inherited_setup([:setup], nil)
- assert_called_fixtures(expected_setup_calls, test_case)
- end
+ def test_with_before_option
+ expected_setup_calls = [:custom_setup_method3,
+ :custom_setup_method0,
+ :custom_setup_method1,
+ :setup]
+ test_case = assert_setup(expected_setup_calls,
+ [[{:before => :append}],
+ [{:before => :append}],
+ [{:before => :prepend}],
+ [{:before => :prepend}]])
+ assert_inherited_setup(expected_setup_calls, test_case)
+
+ assert_inherited_setup([:setup], nil)
+ assert_called_fixtures(expected_setup_calls, test_case)
+ end
- def test_setup_with_after_option
- expected_setup_calls = [:setup,
- :custom_setup_method3,
- :custom_setup_method0,
- :custom_setup_method1]
- test_case = assert_setup(expected_setup_calls,
- [[{:after => :append}],
- [{:after => :append}],
- [{:after => :prepend}],
- [{:after => :prepend}]])
- assert_inherited_setup(expected_setup_calls, test_case)
-
- assert_inherited_setup([:setup], nil)
- assert_called_fixtures(expected_setup_calls, test_case)
- end
+ def test_with_after_option
+ expected_setup_calls = [:setup,
+ :custom_setup_method3,
+ :custom_setup_method0,
+ :custom_setup_method1]
+ test_case = assert_setup(expected_setup_calls,
+ [[{:after => :append}],
+ [{:after => :append}],
+ [{:after => :prepend}],
+ [{:after => :prepend}]])
+ assert_inherited_setup(expected_setup_calls, test_case)
+
+ assert_inherited_setup([:setup], nil)
+ assert_called_fixtures(expected_setup_calls, test_case)
+ end
- def test_setup_with_invalid_option
- assert_invalid_setup_option(:unknown => true)
- assert_invalid_setup_option(:before => :unknown)
- assert_invalid_setup_option(:after => :unknown)
- end
+ def test_with_invalid_option
+ assert_invalid_setup_option(:unknown => true)
+ assert_invalid_setup_option(:before => :unknown)
+ assert_invalid_setup_option(:after => :unknown)
+ end
- def test_setup_with_option_to_inherited
- expected_setup_calls = [:setup]
- test_case = assert_setup(expected_setup_calls, nil)
- assert_inherited_setup([:setup,
- :custom_setup_method0,
- :custom_setup_method1,
- :custom_setup_method3],
- test_case,
- [])
-
- assert_inherited_setup([:setup], nil)
- assert_called_fixtures(expected_setup_calls, test_case)
- end
+ def test_with_option_to_inherited
+ expected_setup_calls = [:setup]
+ test_case = assert_setup(expected_setup_calls, nil)
+ assert_inherited_setup([:setup,
+ :custom_setup_method0,
+ :custom_setup_method1,
+ :custom_setup_method3],
+ test_case,
+ [])
+
+ assert_inherited_setup([:setup], nil)
+ assert_called_fixtures(expected_setup_calls, test_case)
+ end
- def test_cleanup_without_option
- expected_cleanup_calls = [:custom_cleanup_method3,
- :custom_cleanup_method1,
- :custom_cleanup_method0,
- :cleanup]
- test_case = assert_cleanup(expected_cleanup_calls, [])
- assert_inherited_cleanup(expected_cleanup_calls, test_case)
+ private
+ def assert_setup_customizable(expected, parent, options)
+ test_case = Class.new(parent || Test::Unit::TestCase) do
+ yield(self, :before) if block_given?
- assert_inherited_cleanup([:cleanup], nil)
- assert_called_fixtures(expected_cleanup_calls, test_case)
- end
+ def called_ids
+ @called_ids ||= []
+ end
- def test_cleanup_with_before_option
- expected_cleanup_calls = [:custom_cleanup_method3,
- :custom_cleanup_method0,
- :custom_cleanup_method1,
- :cleanup]
- test_case = assert_cleanup(expected_cleanup_calls,
- [[{:before => :append}],
- [{:before => :append}],
- [{:before => :prepend}],
- [{:before => :prepend}]])
- assert_inherited_cleanup(expected_cleanup_calls, test_case)
-
- assert_inherited_cleanup([:cleanup], nil)
- assert_called_fixtures(expected_cleanup_calls, test_case)
- end
+ def called(id)
+ called_ids << id
+ end
- def test_cleanup_with_after_option
- expected_cleanup_calls = [:cleanup,
- :custom_cleanup_method3,
- :custom_cleanup_method0,
- :custom_cleanup_method1]
- test_case = assert_cleanup(expected_cleanup_calls,
- [[{:after => :append}],
- [{:after => :append}],
- [{:after => :prepend}],
- [{:after => :prepend}]])
- assert_inherited_cleanup(expected_cleanup_calls, test_case)
-
- assert_inherited_cleanup([:cleanup], nil)
- assert_called_fixtures(expected_cleanup_calls, test_case)
- end
+ def setup
+ called(:setup)
+ end
- def test_cleanup_with_invalid_option
- assert_invalid_cleanup_option(:unknown => true)
- assert_invalid_cleanup_option(:before => :unknown)
- assert_invalid_cleanup_option(:after => :unknown)
- end
+ setup(*(options[0] || [])) if options
+ def custom_setup_method0
+ called(:custom_setup_method0)
+ end
- def test_cleanup_with_option_to_inherited
- expected_cleanup_calls = [:cleanup]
- test_case = assert_cleanup(expected_cleanup_calls, nil)
- assert_inherited_cleanup([:custom_cleanup_method3,
- :custom_cleanup_method1,
- :custom_cleanup_method0,
- :cleanup],
- test_case, [])
-
- assert_inherited_cleanup([:cleanup], nil)
- assert_called_fixtures(expected_cleanup_calls, test_case)
- end
+ def custom_setup_method1
+ called(:custom_setup_method1)
+ end
+ setup(*[:custom_setup_method1, *(options[1] || [])]) if options
- def test_cleanup_with_exception
- test_case = Class.new(Test::Unit::TestCase) do
- def called_ids
- @called_ids ||= []
- end
+ setup(*(options[2] || [])) if options
+ def custom_setup_method2
+ called(:custom_setup_method2)
+ end
+ unregister_setup(:custom_setup_method2) if options
- def called(id)
- called_ids << id
- end
+ setup(*(options[3] || [])) if options
+ def custom_setup_method3
+ called(:custom_setup_method3)
+ end
- def cleanup
- called(:cleanup)
- raise "cleanup"
- end
+ def test_nothing
+ end
- cleanup
- def custom_cleanup_method0
- called(:custom_cleanup_method0)
- raise "custom_cleanup_method0"
+ yield(self, :after) if block_given?
end
- cleanup
- def custom_cleanup_method1
- called(:custom_cleanup_method1)
- raise "custom_cleanup_method1"
+ assert_called_fixtures(expected, test_case)
+ test_case
+ end
+
+ def assert_setup(expected, options)
+ _test_case = assert_setup_customizable(expected, nil, options)
+ assert_setup_customizable(expected, nil, options) do |test_case, tag|
+ test_case.send(:include, EmptyModule) if tag == :before
end
+ _test_case
+ end
- def test_nothing
+ def assert_inherited_setup(expected, parent, options=nil)
+ _test_case = assert_setup_customizable(expected, parent, options)
+ assert_setup_customizable(expected, parent, options) do |test_case, tag|
+ test_case.send(:include, EmptyModule) if tag == :before
end
+ _test_case
end
- assert_called_fixtures([:custom_cleanup_method1],
- test_case)
+ def assert_invalid_setup_option(option)
+ assert_invalid_option(:setup, option)
+ end
end
- def test_teardown_without_option
- expected_teardown_calls = [:custom_teardown_method3,
- :custom_teardown_method1,
- :custom_teardown_method0,
- :teardown]
- test_case = assert_teardown(expected_teardown_calls, [])
- assert_inherited_teardown(expected_teardown_calls, test_case)
+ class TestCleanup < self
+ def test_without_option
+ expected_cleanup_calls = [:custom_cleanup_method3,
+ :custom_cleanup_method1,
+ :custom_cleanup_method0,
+ :cleanup]
+ test_case = assert_cleanup(expected_cleanup_calls, [])
+ assert_inherited_cleanup(expected_cleanup_calls, test_case)
- assert_inherited_teardown([:teardown], nil)
- assert_called_fixtures(expected_teardown_calls, test_case)
- end
+ assert_inherited_cleanup([:cleanup], nil)
+ assert_called_fixtures(expected_cleanup_calls, test_case)
+ end
- def test_teardown_with_before_option
- expected_teardown_calls = [:custom_teardown_method3,
- :custom_teardown_method0,
- :custom_teardown_method1,
- :teardown]
- test_case = assert_teardown(expected_teardown_calls,
- [[{:before => :append}],
- [{:before => :append}],
- [{:before => :prepend}],
- [{:before => :prepend}]])
- assert_inherited_teardown(expected_teardown_calls, test_case)
-
- assert_inherited_teardown([:teardown], nil)
- assert_called_fixtures(expected_teardown_calls, test_case)
- end
+ def test_with_before_option
+ expected_cleanup_calls = [:custom_cleanup_method3,
+ :custom_cleanup_method0,
+ :custom_cleanup_method1,
+ :cleanup]
+ test_case = assert_cleanup(expected_cleanup_calls,
+ [[{:before => :append}],
+ [{:before => :append}],
+ [{:before => :prepend}],
+ [{:before => :prepend}]])
+ assert_inherited_cleanup(expected_cleanup_calls, test_case)
+
+ assert_inherited_cleanup([:cleanup], nil)
+ assert_called_fixtures(expected_cleanup_calls, test_case)
+ end
- def test_teardown_with_after_option
- expected_teardown_calls = [:teardown,
- :custom_teardown_method3,
- :custom_teardown_method0,
- :custom_teardown_method1]
- test_case = assert_teardown(expected_teardown_calls,
- [[{:after => :append}],
- [{:after => :append}],
- [{:after => :prepend}],
- [{:after => :prepend}]])
- assert_inherited_teardown(expected_teardown_calls, test_case)
-
- assert_inherited_teardown([:teardown], nil)
- assert_called_fixtures(expected_teardown_calls, test_case)
- end
+ def test_with_after_option
+ expected_cleanup_calls = [:cleanup,
+ :custom_cleanup_method3,
+ :custom_cleanup_method0,
+ :custom_cleanup_method1]
+ test_case = assert_cleanup(expected_cleanup_calls,
+ [[{:after => :append}],
+ [{:after => :append}],
+ [{:after => :prepend}],
+ [{:after => :prepend}]])
+ assert_inherited_cleanup(expected_cleanup_calls, test_case)
+
+ assert_inherited_cleanup([:cleanup], nil)
+ assert_called_fixtures(expected_cleanup_calls, test_case)
+ end
- def test_teardown_with_invalid_option
- assert_invalid_teardown_option(:unknown => true)
- assert_invalid_teardown_option(:before => :unknown)
- assert_invalid_teardown_option(:after => :unknown)
- end
+ def test_with_invalid_option
+ assert_invalid_cleanup_option(:unknown => true)
+ assert_invalid_cleanup_option(:before => :unknown)
+ assert_invalid_cleanup_option(:after => :unknown)
+ end
- def test_teardown_with_option_to_inherited
- expected_teardown_calls = [:teardown]
- test_case = assert_teardown(expected_teardown_calls, nil)
- assert_inherited_teardown([:custom_teardown_method3,
- :custom_teardown_method1,
- :custom_teardown_method0,
- :teardown],
- test_case, [])
-
- assert_inherited_teardown([:teardown], nil)
- assert_called_fixtures(expected_teardown_calls, test_case)
- end
+ def test_with_option_to_inherited
+ expected_cleanup_calls = [:cleanup]
+ test_case = assert_cleanup(expected_cleanup_calls, nil)
+ assert_inherited_cleanup([:custom_cleanup_method3,
+ :custom_cleanup_method1,
+ :custom_cleanup_method0,
+ :cleanup],
+ test_case, [])
+
+ assert_inherited_cleanup([:cleanup], nil)
+ assert_called_fixtures(expected_cleanup_calls, test_case)
+ end
- def test_teardown_with_exception
- test_case = Class.new(Test::Unit::TestCase) do
- def called_ids
- @called_ids ||= []
- end
+ def test_with_exception
+ test_case = Class.new(Test::Unit::TestCase) do
+ def called_ids
+ @called_ids ||= []
+ end
- def called(id)
- called_ids << id
- end
+ def called(id)
+ called_ids << id
+ end
- def teardown
- called(:teardown)
- raise "teardown"
- end
+ def cleanup
+ called(:cleanup)
+ raise "cleanup"
+ end
- teardown
- def custom_teardown_method0
- called(:custom_teardown_method0)
- raise "custom_teardown_method0"
- end
+ cleanup
+ def custom_cleanup_method0
+ called(:custom_cleanup_method0)
+ raise "custom_cleanup_method0"
+ end
- teardown
- def custom_teardown_method1
- called(:custom_teardown_method1)
- raise "custom_teardown_method1"
- end
+ cleanup
+ def custom_cleanup_method1
+ called(:custom_cleanup_method1)
+ raise "custom_cleanup_method1"
+ end
- def test_nothing
+ def test_nothing
+ end
end
+
+ assert_called_fixtures([:custom_cleanup_method1],
+ test_case)
end
- assert_called_fixtures([:custom_teardown_method1,
- :custom_teardown_method0,
- :teardown],
- test_case)
- end
+ private
+ def assert_cleanup_customizable(expected, parent, options)
+ test_case = Class.new(parent || Test::Unit::TestCase) do
+ yield(self, :before) if block_given?
- private
- def assert_called_fixtures(expected, test_case)
- test = test_case.new("test_nothing")
- test.run(Test::Unit::TestResult.new) {}
- assert_equal(expected, test.called_ids)
- end
+ def called_ids
+ @called_ids ||= []
+ end
- def assert_setup_customizable(expected, parent, options)
- test_case = Class.new(parent || Test::Unit::TestCase) do
- yield(self, :before) if block_given?
+ def called(id)
+ called_ids << id
+ end
- def called_ids
- @called_ids ||= []
- end
+ def cleanup
+ called(:cleanup)
+ end
- def called(id)
- called_ids << id
- end
+ cleanup(*(options[0] || [])) if options
+ def custom_cleanup_method0
+ called(:custom_cleanup_method0)
+ end
- def setup
- called(:setup)
- end
+ def custom_cleanup_method1
+ called(:custom_cleanup_method1)
+ end
+ cleanup(*[:custom_cleanup_method1, *(options[1] || [])]) if options
- setup(*(options[0] || [])) if options
- def custom_setup_method0
- called(:custom_setup_method0)
- end
+ cleanup(*(options[2] || [])) if options
+ def custom_cleanup_method2
+ called(:custom_cleanup_method2)
+ end
+ unregister_cleanup(:custom_cleanup_method2) if options
- def custom_setup_method1
- called(:custom_setup_method1)
- end
- setup(*[:custom_setup_method1, *(options[1] || [])]) if options
+ cleanup(*(options[3] || [])) if options
+ def custom_cleanup_method3
+ called(:custom_cleanup_method3)
+ end
- setup(*(options[2] || [])) if options
- def custom_setup_method2
- called(:custom_setup_method2)
- end
- unregister_setup(:custom_setup_method2) if options
+ def test_nothing
+ end
- setup(*(options[3] || [])) if options
- def custom_setup_method3
- called(:custom_setup_method3)
+ yield(self, :after) if block_given?
end
- def test_nothing
+ assert_called_fixtures(expected, test_case)
+ test_case
+ end
+
+ def assert_cleanup(expected, options)
+ assert_cleanup_customizable(expected, nil, options)
+ assert_cleanup_customizable(expected, nil, options) do |test_case, tag|
+ test_case.send(:include, EmptyModule) if tag == :before
end
+ end
- yield(self, :after) if block_given?
+ def assert_inherited_cleanup(expected, parent, options=nil)
+ assert_cleanup_customizable(expected, parent, options)
+ assert_cleanup_customizable(expected, parent, options) do |test_case, tag|
+ test_case.send(:include, EmptyModule) if tag == :before
+ end
end
- assert_called_fixtures(expected, test_case)
- test_case
+ def assert_invalid_cleanup_option(option)
+ assert_invalid_option(:cleanup, option)
+ end
end
- def assert_setup(expected, options)
- _test_case = assert_setup_customizable(expected, nil, options)
- assert_setup_customizable(expected, nil, options) do |test_case, tag|
- test_case.send(:include, EmptyModule) if tag == :before
+ class TestTeardown < self
+ def test_without_option
+ expected_teardown_calls = [:custom_teardown_method3,
+ :custom_teardown_method1,
+ :custom_teardown_method0,
+ :teardown]
+ test_case = assert_teardown(expected_teardown_calls, [])
+ assert_inherited_teardown(expected_teardown_calls, test_case)
+
+ assert_inherited_teardown([:teardown], nil)
+ assert_called_fixtures(expected_teardown_calls, test_case)
end
- _test_case
- end
- def assert_inherited_setup(expected, parent, options=nil)
- _test_case = assert_setup_customizable(expected, parent, options)
- assert_setup_customizable(expected, parent, options) do |test_case, tag|
- test_case.send(:include, EmptyModule) if tag == :before
+ def test_with_before_option
+ expected_teardown_calls = [:custom_teardown_method3,
+ :custom_teardown_method0,
+ :custom_teardown_method1,
+ :teardown]
+ test_case = assert_teardown(expected_teardown_calls,
+ [[{:before => :append}],
+ [{:before => :append}],
+ [{:before => :prepend}],
+ [{:before => :prepend}]])
+ assert_inherited_teardown(expected_teardown_calls, test_case)
+
+ assert_inherited_teardown([:teardown], nil)
+ assert_called_fixtures(expected_teardown_calls, test_case)
end
- _test_case
- end
- def assert_cleanup_customizable(expected, parent, options)
- test_case = Class.new(parent || Test::Unit::TestCase) do
- yield(self, :before) if block_given?
+ def test_with_after_option
+ expected_teardown_calls = [:teardown,
+ :custom_teardown_method3,
+ :custom_teardown_method0,
+ :custom_teardown_method1]
+ test_case = assert_teardown(expected_teardown_calls,
+ [[{:after => :append}],
+ [{:after => :append}],
+ [{:after => :prepend}],
+ [{:after => :prepend}]])
+ assert_inherited_teardown(expected_teardown_calls, test_case)
+
+ assert_inherited_teardown([:teardown], nil)
+ assert_called_fixtures(expected_teardown_calls, test_case)
+ end
- def called_ids
- @called_ids ||= []
- end
+ def test_with_invalid_option
+ assert_invalid_teardown_option(:unknown => true)
+ assert_invalid_teardown_option(:before => :unknown)
+ assert_invalid_teardown_option(:after => :unknown)
+ end
- def called(id)
- called_ids << id
- end
+ def test_with_option_to_inherited
+ expected_teardown_calls = [:teardown]
+ test_case = assert_teardown(expected_teardown_calls, nil)
+ assert_inherited_teardown([:custom_teardown_method3,
+ :custom_teardown_method1,
+ :custom_teardown_method0,
+ :teardown],
+ test_case, [])
+
+ assert_inherited_teardown([:teardown], nil)
+ assert_called_fixtures(expected_teardown_calls, test_case)
+ end
- def cleanup
- called(:cleanup)
- end
+ def test_with_exception
+ test_case = Class.new(Test::Unit::TestCase) do
+ def called_ids
+ @called_ids ||= []
+ end
- cleanup(*(options[0] || [])) if options
- def custom_cleanup_method0
- called(:custom_cleanup_method0)
- end
+ def called(id)
+ called_ids << id
+ end
- def custom_cleanup_method1
- called(:custom_cleanup_method1)
- end
- cleanup(*[:custom_cleanup_method1, *(options[1] || [])]) if options
+ def teardown
+ called(:teardown)
+ raise "teardown"
+ end
- cleanup(*(options[2] || [])) if options
- def custom_cleanup_method2
- called(:custom_cleanup_method2)
- end
- unregister_cleanup(:custom_cleanup_method2) if options
+ teardown
+ def custom_teardown_method0
+ called(:custom_teardown_method0)
+ raise "custom_teardown_method0"
+ end
- cleanup(*(options[3] || [])) if options
- def custom_cleanup_method3
- called(:custom_cleanup_method3)
- end
+ teardown
+ def custom_teardown_method1
+ called(:custom_teardown_method1)
+ raise "custom_teardown_method1"
+ end
- def test_nothing
+ def test_nothing
+ end
end
- yield(self, :after) if block_given?
+ assert_called_fixtures([:custom_teardown_method1,
+ :custom_teardown_method0,
+ :teardown],
+ test_case)
end
- assert_called_fixtures(expected, test_case)
- test_case
- end
+ private
+ def assert_teardown_customizable(expected, parent, options)
+ test_case = Class.new(parent || Test::Unit::TestCase) do
+ yield(self, :before) if block_given?
- def assert_cleanup(expected, options)
- assert_cleanup_customizable(expected, nil, options)
- assert_cleanup_customizable(expected, nil, options) do |test_case, tag|
- test_case.send(:include, EmptyModule) if tag == :before
- end
- end
+ def called_ids
+ @called_ids ||= []
+ end
- def assert_inherited_cleanup(expected, parent, options=nil)
- assert_cleanup_customizable(expected, parent, options)
- assert_cleanup_customizable(expected, parent, options) do |test_case, tag|
- test_case.send(:include, EmptyModule) if tag == :before
- end
- end
+ def called(id)
+ called_ids << id
+ end
- def assert_teardown_customizable(expected, parent, options)
- test_case = Class.new(parent || Test::Unit::TestCase) do
- yield(self, :before) if block_given?
+ def teardown
+ called(:teardown)
+ end
- def called_ids
- @called_ids ||= []
- end
+ teardown(*(options[0] || [])) if options
+ def custom_teardown_method0
+ called(:custom_teardown_method0)
+ end
- def called(id)
- called_ids << id
- end
+ def custom_teardown_method1
+ called(:custom_teardown_method1)
+ end
+ teardown(*[:custom_teardown_method1, *(options[1] || [])]) if options
- def teardown
- called(:teardown)
- end
+ teardown(*(options[2] || [])) if options
+ def custom_teardown_method2
+ called(:custom_teardown_method2)
+ end
+ unregister_teardown(:custom_teardown_method2) if options
- teardown(*(options[0] || [])) if options
- def custom_teardown_method0
- called(:custom_teardown_method0)
- end
+ teardown(*(options[3] || [])) if options
+ def custom_teardown_method3
+ called(:custom_teardown_method3)
+ end
- def custom_teardown_method1
- called(:custom_teardown_method1)
- end
- teardown(*[:custom_teardown_method1, *(options[1] || [])]) if options
+ def test_nothing
+ end
- teardown(*(options[2] || [])) if options
- def custom_teardown_method2
- called(:custom_teardown_method2)
+ yield(self, :after) if block_given?
end
- unregister_teardown(:custom_teardown_method2) if options
- teardown(*(options[3] || [])) if options
- def custom_teardown_method3
- called(:custom_teardown_method3)
- end
+ assert_called_fixtures(expected, test_case)
+ test_case
+ end
- def test_nothing
+ def assert_teardown(expected, options)
+ assert_teardown_customizable(expected, nil, options)
+ assert_teardown_customizable(expected, nil, options) do |test_case, tag|
+ test_case.send(:include, EmptyModule) if tag == :before
end
-
- yield(self, :after) if block_given?
end
- assert_called_fixtures(expected, test_case)
- test_case
- end
+ def assert_inherited_teardown(expected, parent, options=nil)
+ assert_teardown_customizable(expected, parent, options)
+ assert_teardown_customizable(expected, parent, options) do |test_case, tag|
+ test_case.send(:include, EmptyModule) if tag == :before
+ end
+ end
- def assert_teardown(expected, options)
- assert_teardown_customizable(expected, nil, options)
- assert_teardown_customizable(expected, nil, options) do |test_case, tag|
- test_case.send(:include, EmptyModule) if tag == :before
+ def assert_invalid_teardown_option(option)
+ assert_invalid_option(:teardown, option)
end
end
- def assert_inherited_teardown(expected, parent, options=nil)
- assert_teardown_customizable(expected, parent, options)
- assert_teardown_customizable(expected, parent, options) do |test_case, tag|
- test_case.send(:include, EmptyModule) if tag == :before
- end
+ private
+ def assert_called_fixtures(expected, test_case)
+ test = test_case.new("test_nothing")
+ test.run(Test::Unit::TestResult.new) {}
+ assert_equal(expected, test.called_ids)
end
def assert_invalid_option(fixture_type, option)
@@ -472,16 +493,4 @@ class TestUnitFixture < Test::Unit::TestCase
": #{option.inspect}",
exception.message)
end
-
- def assert_invalid_setup_option(option)
- assert_invalid_option(:setup, option)
- end
-
- def assert_invalid_cleanup_option(option)
- assert_invalid_option(:cleanup, option)
- end
-
- def assert_invalid_teardown_option(option)
- assert_invalid_option(:teardown, option)
- end
end
From null+test-unit ¡÷ clear-code.com Mon Jan 2 05:22:06 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Mon, 02 Jan 2012 19:22:06 +0900
Subject: [test-unit-commit:00144] test-unit/test-unit [master] accept a
block as a fixture callback.
Message-ID: <20120102102217.07B129A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-02 19:22:06 +0900 (Mon, 02 Jan 2012)
New Revision: b9bb8fa38864459a10d3caf80428d350c70253f6
Log:
accept a block as a fixture callback.
Modified files:
lib/test/unit/fixture.rb
test/test-fixture.rb
Modified: lib/test/unit/fixture.rb (+95 -82)
===================================================================
--- lib/test/unit/fixture.rb 2012-01-02 17:33:46 +0900 (a587fa7)
+++ lib/test/unit/fixture.rb 2012-01-02 19:22:06 +0900 (620dae5)
@@ -6,12 +6,11 @@ module Test
base.extend(ClassMethods)
[:setup, :cleanup, :teardown].each do |fixture|
- observer = Proc.new do |test_case, _, _, value, method_name|
+ observer = lambda do |test_case, _, _, value, callback|
if value.nil?
- test_case.send("unregister_#{fixture}_method", method_name)
+ test_case.send("unregister_#{fixture}_callback", callback)
else
- test_case.send("register_#{fixture}_method", method_name,
- value)
+ test_case.send("register_#{fixture}_callback", callback, value)
end
end
base.register_attribute_observer(fixture, &observer)
@@ -20,89 +19,92 @@ module Test
end
module ClassMethods
- def setup(*method_names)
- register_fixture(:setup, *method_names)
+ def setup(*method_names, &callback)
+ register_fixture(:setup, *method_names, &callback)
end
- def unregister_setup(*method_names)
- unregister_fixture(:setup, *method_names)
+ def unregister_setup(*method_names_or_callbacks)
+ unregister_fixture(:setup, *method_names_or_callbacks)
end
- def cleanup(*method_names)
- register_fixture(:cleanup, *method_names)
+ def cleanup(*method_names, &callback)
+ register_fixture(:cleanup, *method_names, &callback)
end
- def unregister_cleanup(*method_names)
- unregister_fixture(:cleanup, *method_names)
+ def unregister_cleanup(*method_names_or_callbacks)
+ unregister_fixture(:cleanup, *method_names_or_callbacks)
end
- def teardown(*method_names)
- register_fixture(:teardown, *method_names)
+ def teardown(*method_names, &callback)
+ register_fixture(:teardown, *method_names, &callback)
end
- def unregister_teardown(*method_names)
- unregister_fixture(:teardown, *method_names)
+ def unregister_teardown(*method_names_or_callbacks)
+ unregister_fixture(:teardown, *method_names_or_callbacks)
end
- def register_setup_method(method_name, options)
- register_fixture_method(:setup, method_name, options, :after, :append)
+ def register_setup_callback(method_name_or_callback, options)
+ register_fixture_callback(:setup, method_name_or_callback,
+ options, :after, :append)
end
- def unregister_setup_method(method_name)
- unregister_fixture_method(:setup, method_name)
+ def unregister_setup_callback(method_name_or_callback)
+ unregister_fixture_callback(:setup, method_name_or_callback)
end
- def register_cleanup_method(method_name, options)
- register_fixture_method(:cleanup, method_name, options,
- :before, :prepend)
+ def register_cleanup_callback(method_name_or_callback, options)
+ register_fixture_callback(:cleanup, method_name_or_callback,
+ options, :before, :prepend)
end
- def unregister_cleanup_method(method_name)
- unregister_fixture_method(:cleanup, method_name)
+ def unregister_cleanup_callback(method_name_or_callback)
+ unregister_fixture_callback(:cleanup, method_name_or_callback)
end
- def register_teardown_method(method_name, options)
- register_fixture_method(:teardown, method_name, options,
- :before, :prepend)
+ def register_teardown_callback(method_name_or_callback, options)
+ register_fixture_callback(:teardown, method_name_or_callback,
+ options, :before, :prepend)
end
- def unregister_teardown_method(method_name)
- unregister_fixture_method(:teardown, method_name)
+ def unregister_teardown_callback(method_name_or_callback)
+ unregister_fixture_callback(:teardown, method_name_or_callback)
end
- def before_setup_methods
- collect_fixture_methods(:setup, :before)
+ def before_setup_callbacks
+ collect_fixture_callbacks(:setup, :before)
end
- def after_setup_methods
- collect_fixture_methods(:setup, :after)
+ def after_setup_callbacks
+ collect_fixture_callbacks(:setup, :after)
end
- def before_cleanup_methods
- collect_fixture_methods(:cleanup, :before)
+ def before_cleanup_callbacks
+ collect_fixture_callbacks(:cleanup, :before)
end
- def after_cleanup_methods
- collect_fixture_methods(:cleanup, :after)
+ def after_cleanup_callbacks
+ collect_fixture_callbacks(:cleanup, :after)
end
- def before_teardown_methods
- collect_fixture_methods(:teardown, :before)
+ def before_teardown_callbacks
+ collect_fixture_callbacks(:teardown, :before)
end
- def after_teardown_methods
- collect_fixture_methods(:teardown, :after)
+ def after_teardown_callbacks
+ collect_fixture_callbacks(:teardown, :after)
end
private
- def register_fixture(fixture, *method_names)
+ def register_fixture(fixture, *method_names, &callback)
options = {}
options = method_names.pop if method_names.last.is_a?(Hash)
- attribute(fixture, options, *method_names)
+ callbacks = method_names
+ callbacks << callback if callback
+ attribute(fixture, options, *callbacks)
end
- def unregister_fixture(fixture, *method_names)
- attribute(fixture, nil, *method_names)
+ def unregister_fixture(fixture, *method_names_or_callbacks)
+ attribute(fixture, nil, *method_names_or_callbacks)
end
def valid_register_fixture_options?(options)
@@ -114,27 +116,27 @@ module Test
[:prepend, :append].include?(options[key])
end
- def add_fixture_method_name(how, variable_name, method_name)
- methods = instance_eval("#{variable_name} ||= []")
+ def add_fixture_callback(how, variable_name, method_name_or_callback)
+ callbacks = instance_eval("#{variable_name} ||= []")
if how == :prepend
- methods = [method_name] | methods
+ callbacks = [method_name_or_callback] | callbacks
else
- methods = methods | [method_name]
+ callbacks = callbacks | [method_name_or_callback]
end
- instance_variable_set(variable_name, methods)
+ instance_variable_set(variable_name, callbacks)
end
- def registered_methods_variable_name(fixture, order)
- "@#{order}_#{fixture}_methods"
+ def registered_callbacks_variable_name(fixture, order)
+ "@#{order}_#{fixture}_callbacks"
end
- def unregistered_methods_variable_name(fixture)
- "@unregistered_#{fixture}_methods"
+ def unregistered_callbacks_variable_name(fixture)
+ "@unregistered_#{fixture}_callbacks"
end
- def register_fixture_method(fixture, method_name, options,
- default_order, default_how)
+ def register_fixture_callback(fixture, method_name_or_callback, options,
+ default_order, default_how)
unless valid_register_fixture_options?(options)
message = "must be {:before => :prepend}, " +
"{:before => :append}, {:after => :prepend} or " +
@@ -147,29 +149,29 @@ module Test
else
order, how = options.to_a.first
end
- variable_name = registered_methods_variable_name(fixture, order)
- add_fixture_method_name(how, variable_name, method_name)
+ variable_name = registered_callbacks_variable_name(fixture, order)
+ add_fixture_callback(how, variable_name, method_name_or_callback)
end
- def unregister_fixture_method(fixture, method_name)
- variable_name = unregistered_methods_variable_name(fixture)
- add_fixture_method_name(:append, variable_name, method_name)
+ def unregister_fixture_callback(fixture, method_name_or_callback)
+ variable_name = unregistered_callbacks_variable_name(fixture)
+ add_fixture_callback(:append, variable_name, method_name_or_callback)
end
- def collect_fixture_methods(fixture, order)
- methods_variable = registered_methods_variable_name(fixture, order)
- unregistered_methods_variable =
- unregistered_methods_variable_name(fixture)
+ def collect_fixture_callbacks(fixture, order)
+ callbacks_variable = registered_callbacks_variable_name(fixture, order)
+ unregistered_callbacks_variable =
+ unregistered_callbacks_variable_name(fixture)
base_index = ancestors.index(Fixture)
interested_ancestors = ancestors[0, base_index].reverse
interested_ancestors.inject([]) do |result, ancestor|
if ancestor.is_a?(Class)
ancestor.class_eval do
- methods = instance_eval("#{methods_variable} ||= []")
- unregistered_methods =
- instance_eval("#{unregistered_methods_variable} ||= []")
- (result | methods) - unregistered_methods
+ callbacks = instance_eval("#{callbacks_variable} ||= []")
+ unregistered_callbacks =
+ instance_eval("#{unregistered_callbacks_variable} ||= []")
+ (result | callbacks) - unregistered_callbacks
end
else
result
@@ -181,21 +183,32 @@ module Test
private
def run_fixture(fixture, options={})
[
- self.class.send("before_#{fixture}_methods"),
+ self.class.send("before_#{fixture}_callbacks"),
fixture,
- self.class.send("after_#{fixture}_methods")
- ].flatten.each do |method_name|
- next unless respond_to?(method_name, true)
- if options[:handle_exception]
- begin
- send(method_name)
- rescue Exception
- raise unless handle_exception($!)
- end
- else
- send(method_name)
+ self.class.send("after_#{fixture}_callbacks")
+ ].flatten.each do |method_name_or_callback|
+ run_fixture_callback(method_name_or_callback, options)
+ end
+ end
+
+ def run_fixture_callback(method_name_or_callback, options)
+ if method_name_or_callback.respond_to?(:call)
+ callback = lambda do
+ method_name_or_callback.call(self)
+ end
+ else
+ return unless respond_to?(method_name_or_callback, true)
+ callback = lambda do
+ send(method_name_or_callback)
end
end
+
+ begin
+ callback.call
+ rescue Exception
+ raise unless options[:handle_exception]
+ raise unless handle_exception($!)
+ end
end
def run_setup
Modified: test/test-fixture.rb (+150 -14)
===================================================================
--- test/test-fixture.rb 2012-01-02 17:33:46 +0900 (8d155fa)
+++ test/test-fixture.rb 2012-01-02 19:22:06 +0900 (3966d34)
@@ -6,8 +6,11 @@ class TestUnitFixture < Test::Unit::TestCase
def test_without_option
expected_setup_calls = [:setup,
:custom_setup_method0,
+ :custom_setup_callback0,
:custom_setup_method1,
- :custom_setup_method3]
+ :custom_setup_callback1,
+ :custom_setup_method3,
+ :custom_setup_callback3]
test_case = assert_setup(expected_setup_calls, [])
assert_inherited_setup(expected_setup_calls, test_case)
@@ -16,9 +19,12 @@ class TestUnitFixture < Test::Unit::TestCase
end
def test_with_before_option
- expected_setup_calls = [:custom_setup_method3,
+ expected_setup_calls = [:custom_setup_callback3,
+ :custom_setup_method3,
:custom_setup_method0,
+ :custom_setup_callback0,
:custom_setup_method1,
+ :custom_setup_callback1,
:setup]
test_case = assert_setup(expected_setup_calls,
[[{:before => :append}],
@@ -33,9 +39,12 @@ class TestUnitFixture < Test::Unit::TestCase
def test_with_after_option
expected_setup_calls = [:setup,
+ :custom_setup_callback3,
:custom_setup_method3,
:custom_setup_method0,
- :custom_setup_method1]
+ :custom_setup_callback0,
+ :custom_setup_method1,
+ :custom_setup_callback1]
test_case = assert_setup(expected_setup_calls,
[[{:after => :append}],
[{:after => :append}],
@@ -58,8 +67,11 @@ class TestUnitFixture < Test::Unit::TestCase
test_case = assert_setup(expected_setup_calls, nil)
assert_inherited_setup([:setup,
:custom_setup_method0,
+ :custom_setup_callback0,
:custom_setup_method1,
- :custom_setup_method3],
+ :custom_setup_callback1,
+ :custom_setup_method3,
+ :custom_setup_callback3],
test_case,
[])
@@ -89,22 +101,48 @@ class TestUnitFixture < Test::Unit::TestCase
called(:custom_setup_method0)
end
+ if options
+ setup(*(options[0] || [])) do |test_case_instance|
+ test_case_instance.called(:custom_setup_callback0)
+ end
+ end
+
def custom_setup_method1
called(:custom_setup_method1)
end
setup(*[:custom_setup_method1, *(options[1] || [])]) if options
+ if options
+ setup(*(options[1] || [])) do |test_case_instance|
+ test_case_instance.called(:custom_setup_callback1)
+ end
+ end
+
setup(*(options[2] || [])) if options
def custom_setup_method2
called(:custom_setup_method2)
end
unregister_setup(:custom_setup_method2) if options
+ if options
+ callback = lambda do |test_case_instance|
+ test_case_instance.called(:custom_setup_callback2)
+ end
+ setup(*(options[2] || []), &callback)
+ unregister_setup(callback)
+ end
+
setup(*(options[3] || [])) if options
def custom_setup_method3
called(:custom_setup_method3)
end
+ if options
+ setup(*(options[3] || [])) do |test_case_instance|
+ test_case_instance.called(:custom_setup_callback3)
+ end
+ end
+
def test_nothing
end
@@ -138,8 +176,11 @@ class TestUnitFixture < Test::Unit::TestCase
class TestCleanup < self
def test_without_option
- expected_cleanup_calls = [:custom_cleanup_method3,
+ expected_cleanup_calls = [:custom_cleanup_callback3,
+ :custom_cleanup_method3,
+ :custom_cleanup_callback1,
:custom_cleanup_method1,
+ :custom_cleanup_callback0,
:custom_cleanup_method0,
:cleanup]
test_case = assert_cleanup(expected_cleanup_calls, [])
@@ -150,9 +191,12 @@ class TestUnitFixture < Test::Unit::TestCase
end
def test_with_before_option
- expected_cleanup_calls = [:custom_cleanup_method3,
+ expected_cleanup_calls = [:custom_cleanup_callback3,
+ :custom_cleanup_method3,
:custom_cleanup_method0,
+ :custom_cleanup_callback0,
:custom_cleanup_method1,
+ :custom_cleanup_callback1,
:cleanup]
test_case = assert_cleanup(expected_cleanup_calls,
[[{:before => :append}],
@@ -167,9 +211,12 @@ class TestUnitFixture < Test::Unit::TestCase
def test_with_after_option
expected_cleanup_calls = [:cleanup,
+ :custom_cleanup_callback3,
:custom_cleanup_method3,
:custom_cleanup_method0,
- :custom_cleanup_method1]
+ :custom_cleanup_callback0,
+ :custom_cleanup_method1,
+ :custom_cleanup_callback1]
test_case = assert_cleanup(expected_cleanup_calls,
[[{:after => :append}],
[{:after => :append}],
@@ -190,8 +237,11 @@ class TestUnitFixture < Test::Unit::TestCase
def test_with_option_to_inherited
expected_cleanup_calls = [:cleanup]
test_case = assert_cleanup(expected_cleanup_calls, nil)
- assert_inherited_cleanup([:custom_cleanup_method3,
+ assert_inherited_cleanup([:custom_cleanup_callback3,
+ :custom_cleanup_method3,
+ :custom_cleanup_callback1,
:custom_cleanup_method1,
+ :custom_cleanup_callback0,
:custom_cleanup_method0,
:cleanup],
test_case, [])
@@ -221,17 +271,27 @@ class TestUnitFixture < Test::Unit::TestCase
raise "custom_cleanup_method0"
end
+ cleanup do |test_case_instance|
+ test_case_instance.called(:custom_cleanup_callback0)
+ raise "custom_cleanup_callback0"
+ end
+
cleanup
def custom_cleanup_method1
called(:custom_cleanup_method1)
raise "custom_cleanup_method1"
end
+ cleanup do |test_case_instance|
+ test_case_instance.called(:custom_cleanup_callback1)
+ raise "custom_cleanup_callback1"
+ end
+
def test_nothing
end
end
- assert_called_fixtures([:custom_cleanup_method1],
+ assert_called_fixtures([:custom_cleanup_callback1],
test_case)
end
@@ -257,22 +317,48 @@ class TestUnitFixture < Test::Unit::TestCase
called(:custom_cleanup_method0)
end
+ if options
+ cleanup(*(options[0] || [])) do |test_case_instance|
+ test_case_instance.called(:custom_cleanup_callback0)
+ end
+ end
+
def custom_cleanup_method1
called(:custom_cleanup_method1)
end
cleanup(*[:custom_cleanup_method1, *(options[1] || [])]) if options
+ if options
+ cleanup(*(options[1] || [])) do |test_case_instance|
+ test_case_instance.called(:custom_cleanup_callback1)
+ end
+ end
+
cleanup(*(options[2] || [])) if options
def custom_cleanup_method2
called(:custom_cleanup_method2)
end
unregister_cleanup(:custom_cleanup_method2) if options
+ if options
+ callback = lambda do |test_case_instance|
+ test_case_instance.called(:custom_cleanup_callback2)
+ end
+ cleanup(*(options[2] || []), &callback)
+ unregister_cleanup(callback)
+ end
+
cleanup(*(options[3] || [])) if options
def custom_cleanup_method3
called(:custom_cleanup_method3)
end
+ if options
+ cleanup(*(options[3] || [])) do |test_case_instance|
+ test_case_instance.called(:custom_cleanup_callback3)
+ end
+ end
+
def test_nothing
end
@@ -304,8 +390,11 @@ class TestUnitFixture < Test::Unit::TestCase
class TestTeardown < self
def test_without_option
- expected_teardown_calls = [:custom_teardown_method3,
+ expected_teardown_calls = [:custom_teardown_callback3,
+ :custom_teardown_method3,
+ :custom_teardown_callback1,
:custom_teardown_method1,
+ :custom_teardown_callback0,
:custom_teardown_method0,
:teardown]
test_case = assert_teardown(expected_teardown_calls, [])
@@ -316,9 +405,12 @@ class TestUnitFixture < Test::Unit::TestCase
end
def test_with_before_option
- expected_teardown_calls = [:custom_teardown_method3,
+ expected_teardown_calls = [:custom_teardown_callback3,
+ :custom_teardown_method3,
:custom_teardown_method0,
+ :custom_teardown_callback0,
:custom_teardown_method1,
+ :custom_teardown_callback1,
:teardown]
test_case = assert_teardown(expected_teardown_calls,
[[{:before => :append}],
@@ -333,9 +425,12 @@ class TestUnitFixture < Test::Unit::TestCase
def test_with_after_option
expected_teardown_calls = [:teardown,
+ :custom_teardown_callback3,
:custom_teardown_method3,
:custom_teardown_method0,
- :custom_teardown_method1]
+ :custom_teardown_callback0,
+ :custom_teardown_method1,
+ :custom_teardown_callback1]
test_case = assert_teardown(expected_teardown_calls,
[[{:after => :append}],
[{:after => :append}],
@@ -356,8 +451,11 @@ class TestUnitFixture < Test::Unit::TestCase
def test_with_option_to_inherited
expected_teardown_calls = [:teardown]
test_case = assert_teardown(expected_teardown_calls, nil)
- assert_inherited_teardown([:custom_teardown_method3,
+ assert_inherited_teardown([:custom_teardown_callback3,
+ :custom_teardown_method3,
+ :custom_teardown_callback1,
:custom_teardown_method1,
+ :custom_teardown_callback0,
:custom_teardown_method0,
:teardown],
test_case, [])
@@ -387,17 +485,29 @@ class TestUnitFixture < Test::Unit::TestCase
raise "custom_teardown_method0"
end
+ teardown do |test_case_instance|
+ test_case_instance.called(:custom_teardown_callback0)
+ raise "custom_teardown_callback0"
+ end
+
teardown
def custom_teardown_method1
called(:custom_teardown_method1)
raise "custom_teardown_method1"
end
+ teardown do |test_case_instance|
+ test_case_instance.called(:custom_teardown_callback1)
+ raise "custom_teardown_callback1"
+ end
+
def test_nothing
end
end
- assert_called_fixtures([:custom_teardown_method1,
+ assert_called_fixtures([:custom_teardown_callback1,
+ :custom_teardown_method1,
+ :custom_teardown_callback0,
:custom_teardown_method0,
:teardown],
test_case)
@@ -425,22 +535,48 @@ class TestUnitFixture < Test::Unit::TestCase
called(:custom_teardown_method0)
end
+ if options
+ teardown(*(options[0] || [])) do |test_case_instance|
+ test_case_instance.called(:custom_teardown_callback0)
+ end
+ end
+
def custom_teardown_method1
called(:custom_teardown_method1)
end
teardown(*[:custom_teardown_method1, *(options[1] || [])]) if options
+ if options
+ teardown(*(options[1] || [])) do |test_case_instance|
+ test_case_instance.called(:custom_teardown_callback1)
+ end
+ end
+
teardown(*(options[2] || [])) if options
def custom_teardown_method2
called(:custom_teardown_method2)
end
unregister_teardown(:custom_teardown_method2) if options
+ if options
+ callback = lambda do |test_case_instance|
+ test_case_instance.called(:custom_teardown_callback2)
+ end
+ teardown(*(options[2] || []), &callback)
+ unregister_teardown(callback)
+ end
+
teardown(*(options[3] || [])) if options
def custom_teardown_method3
called(:custom_teardown_method3)
end
+ if options
+ teardown(*(options[3] || [])) do |test_case_instance|
+ test_case_instance.called(:custom_teardown_callback3)
+ end
+ end
+
def test_nothing
end
From null+test-unit ¡÷ clear-code.com Mon Jan 2 05:31:39 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Mon, 02 Jan 2012 19:31:39 +0900
Subject: [test-unit-commit:00145] test-unit/test-unit [master] use
instance_eval to pass target test instead of call argument.
Message-ID: <20120102103155.3FA309A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-02 19:31:39 +0900 (Mon, 02 Jan 2012)
New Revision: 471740297964a6a819d5f42099f893932f6ec9ad
Log:
use instance_eval to pass target test instead of call argument.
Modified files:
lib/test/unit/fixture.rb
test/test-fixture.rb
Modified: lib/test/unit/fixture.rb (+1 -1)
===================================================================
--- lib/test/unit/fixture.rb 2012-01-02 19:22:06 +0900 (620dae5)
+++ lib/test/unit/fixture.rb 2012-01-02 19:31:39 +0900 (f8537eb)
@@ -194,7 +194,7 @@ module Test
def run_fixture_callback(method_name_or_callback, options)
if method_name_or_callback.respond_to?(:call)
callback = lambda do
- method_name_or_callback.call(self)
+ instance_eval(&method_name_or_callback)
end
else
return unless respond_to?(method_name_or_callback, true)
Modified: test/test-fixture.rb (+32 -32)
===================================================================
--- test/test-fixture.rb 2012-01-02 19:22:06 +0900 (3966d34)
+++ test/test-fixture.rb 2012-01-02 19:31:39 +0900 (76807fc)
@@ -102,8 +102,8 @@ class TestUnitFixture < Test::Unit::TestCase
end
if options
- setup(*(options[0] || [])) do |test_case_instance|
- test_case_instance.called(:custom_setup_callback0)
+ setup(*(options[0] || [])) do
+ called(:custom_setup_callback0)
end
end
@@ -113,8 +113,8 @@ class TestUnitFixture < Test::Unit::TestCase
setup(*[:custom_setup_method1, *(options[1] || [])]) if options
if options
- setup(*(options[1] || [])) do |test_case_instance|
- test_case_instance.called(:custom_setup_callback1)
+ setup(*(options[1] || [])) do
+ called(:custom_setup_callback1)
end
end
@@ -125,8 +125,8 @@ class TestUnitFixture < Test::Unit::TestCase
unregister_setup(:custom_setup_method2) if options
if options
- callback = lambda do |test_case_instance|
- test_case_instance.called(:custom_setup_callback2)
+ callback = lambda do
+ called(:custom_setup_callback2)
end
setup(*(options[2] || []), &callback)
unregister_setup(callback)
@@ -138,8 +138,8 @@ class TestUnitFixture < Test::Unit::TestCase
end
if options
- setup(*(options[3] || [])) do |test_case_instance|
- test_case_instance.called(:custom_setup_callback3)
+ setup(*(options[3] || [])) do
+ called(:custom_setup_callback3)
end
end
@@ -271,8 +271,8 @@ class TestUnitFixture < Test::Unit::TestCase
raise "custom_cleanup_method0"
end
- cleanup do |test_case_instance|
- test_case_instance.called(:custom_cleanup_callback0)
+ cleanup do
+ called(:custom_cleanup_callback0)
raise "custom_cleanup_callback0"
end
@@ -282,8 +282,8 @@ class TestUnitFixture < Test::Unit::TestCase
raise "custom_cleanup_method1"
end
- cleanup do |test_case_instance|
- test_case_instance.called(:custom_cleanup_callback1)
+ cleanup do
+ called(:custom_cleanup_callback1)
raise "custom_cleanup_callback1"
end
@@ -318,8 +318,8 @@ class TestUnitFixture < Test::Unit::TestCase
end
if options
- cleanup(*(options[0] || [])) do |test_case_instance|
- test_case_instance.called(:custom_cleanup_callback0)
+ cleanup(*(options[0] || [])) do
+ called(:custom_cleanup_callback0)
end
end
@@ -329,8 +329,8 @@ class TestUnitFixture < Test::Unit::TestCase
cleanup(*[:custom_cleanup_method1, *(options[1] || [])]) if options
if options
- cleanup(*(options[1] || [])) do |test_case_instance|
- test_case_instance.called(:custom_cleanup_callback1)
+ cleanup(*(options[1] || [])) do
+ called(:custom_cleanup_callback1)
end
end
@@ -341,8 +341,8 @@ class TestUnitFixture < Test::Unit::TestCase
unregister_cleanup(:custom_cleanup_method2) if options
if options
- callback = lambda do |test_case_instance|
- test_case_instance.called(:custom_cleanup_callback2)
+ callback = lambda do
+ called(:custom_cleanup_callback2)
end
cleanup(*(options[2] || []), &callback)
unregister_cleanup(callback)
@@ -354,8 +354,8 @@ class TestUnitFixture < Test::Unit::TestCase
end
if options
- cleanup(*(options[3] || [])) do |test_case_instance|
- test_case_instance.called(:custom_cleanup_callback3)
+ cleanup(*(options[3] || [])) do
+ called(:custom_cleanup_callback3)
end
end
@@ -485,8 +485,8 @@ class TestUnitFixture < Test::Unit::TestCase
raise "custom_teardown_method0"
end
- teardown do |test_case_instance|
- test_case_instance.called(:custom_teardown_callback0)
+ teardown do
+ called(:custom_teardown_callback0)
raise "custom_teardown_callback0"
end
@@ -496,8 +496,8 @@ class TestUnitFixture < Test::Unit::TestCase
raise "custom_teardown_method1"
end
- teardown do |test_case_instance|
- test_case_instance.called(:custom_teardown_callback1)
+ teardown do
+ called(:custom_teardown_callback1)
raise "custom_teardown_callback1"
end
@@ -536,8 +536,8 @@ class TestUnitFixture < Test::Unit::TestCase
end
if options
- teardown(*(options[0] || [])) do |test_case_instance|
- test_case_instance.called(:custom_teardown_callback0)
+ teardown(*(options[0] || [])) do
+ called(:custom_teardown_callback0)
end
end
@@ -547,8 +547,8 @@ class TestUnitFixture < Test::Unit::TestCase
teardown(*[:custom_teardown_method1, *(options[1] || [])]) if options
if options
- teardown(*(options[1] || [])) do |test_case_instance|
- test_case_instance.called(:custom_teardown_callback1)
+ teardown(*(options[1] || [])) do
+ called(:custom_teardown_callback1)
end
end
@@ -559,8 +559,8 @@ class TestUnitFixture < Test::Unit::TestCase
unregister_teardown(:custom_teardown_method2) if options
if options
- callback = lambda do |test_case_instance|
- test_case_instance.called(:custom_teardown_callback2)
+ callback = lambda do
+ called(:custom_teardown_callback2)
end
teardown(*(options[2] || []), &callback)
unregister_teardown(callback)
@@ -572,8 +572,8 @@ class TestUnitFixture < Test::Unit::TestCase
end
if options
- teardown(*(options[3] || [])) do |test_case_instance|
- test_case_instance.called(:custom_teardown_callback3)
+ teardown(*(options[3] || [])) do
+ called(:custom_teardown_callback3)
end
end
From null+test-unit ¡÷ clear-code.com Mon Jan 2 05:44:14 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Mon, 02 Jan 2012 19:44:14 +0900
Subject: [test-unit-commit:00146] test-unit/test-unit [master] update
document about fixture.
Message-ID: <20120102104436.A9CF39A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-02 19:44:14 +0900 (Mon, 02 Jan 2012)
New Revision: 15958517a62702466175949f01fa3e8cffc3a13f
Log:
update document about fixture.
Modified files:
lib/test/unit/testcase.rb
Modified: lib/test/unit/testcase.rb (+31 -1)
===================================================================
--- lib/test/unit/testcase.rb 2012-01-02 19:31:39 +0900 (64a25bb)
+++ lib/test/unit/testcase.rb 2012-01-02 19:44:14 +0900 (6abe2eb)
@@ -3,7 +3,7 @@
# Author:: Nathaniel Talbott.
# Copyright::
# * Copyright (c) 2000-2003 Nathaniel Talbott. All rights reserved.
-# * Copyright (c) 2008-2011 Kouhei Sutou
+# * Copyright (c) 2008-2012 Kouhei Sutou
# License:: Ruby license.
require 'test/unit/attribute'
@@ -360,11 +360,19 @@ module Test
# ...
# end
#
+ # setup do
+ # ... # setup callback1
+ # end
+ #
# setup
# def my_setup2
# ...
# end
#
+ # setup do
+ # ... # setup callback2
+ # end
+ #
# def test_my_class
# ...
# end
@@ -373,7 +381,9 @@ module Test
# Here is a call order:
# * setup
# * my_setup1
+ # * setup callback1
# * my_setup2
+ # * setup callback2
# * test_my_class
def setup
end
@@ -395,11 +405,19 @@ module Test
# ...
# end
#
+ # cleanup do
+ # ... # cleanup callback1
+ # end
+ #
# cleanup
# def my_cleanup2
# ...
# end
#
+ # cleanup do
+ # ... # cleanup callback2
+ # end
+ #
# def test_my_class
# ...
# end
@@ -407,7 +425,9 @@ module Test
#
# Here is a call order:
# * test_my_class
+ # * cleanup callback2
# * my_cleanup2
+ # * cleanup callback1
# * my_cleanup1
# * cleanup
def cleanup
@@ -428,11 +448,19 @@ module Test
# ...
# end
#
+ # teardown do
+ # ... # teardown callback1
+ # end
+ #
# teardown
# def my_teardown2
# ...
# end
#
+ # teardown do
+ # ... # teardown callback2
+ # end
+ #
# def test_my_class
# ...
# end
@@ -440,7 +468,9 @@ module Test
#
# Here is a call order:
# * test_my_class
+ # * teardown callback2
# * my_teardown2
+ # * teardown callback1
# * my_teardown1
# * teardown
def teardown
From null+test-unit ¡÷ clear-code.com Mon Jan 2 06:06:22 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Mon, 02 Jan 2012 20:06:22 +0900
Subject: [test-unit-commit:00147] test-unit/test-unit [master] add 2.4.4
entry.
Message-ID: <20120102110634.3F3509A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-02 20:06:22 +0900 (Mon, 02 Jan 2012)
New Revision: 17eba4d5baf37b01ad918c2a092f0c18aba600e4
Log:
add 2.4.4 entry.
Modified files:
doc/po/ja.po
doc/text/news.textile
Modified: doc/po/ja.po (+4037 -3894)
===================================================================
--- doc/po/ja.po 2012-01-02 19:44:14 +0900 (ada7c0e)
+++ doc/po/ja.po 2012-01-02 20:06:22 +0900 (514d62a)
@@ -5,8 +5,8 @@
msgid ""
msgstr ""
"Project-Id-Version: test-unit 2.3.1\n"
-"POT-Creation-Date: 2011-12-11 14:35+0900\n"
-"PO-Revision-Date: 2011-12-11 14:36+0900\n"
+"POT-Creation-Date: 2012-01-02 20:04+0900\n"
+"PO-Revision-Date: 2012-01-02 20:06+0900\n"
"Last-Translator: Kouhei Sutou \n"
"Language-Team: Japanese\n"
"Language: ja\n"
@@ -207,7 +207,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:37(a)
#: doc/reference/en/Test/Unit/Assertions.html:37(a)
#: doc/reference/en/Test/Unit/Assertions.html:1679(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2462(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2470(span)
#: doc/reference/en/Test/Unit/PendedError.html:37(a)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:37(a)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:37(a)
@@ -384,14 +384,14 @@ msgstr ""
#: doc/reference/en/Test/Unit/Util/ProcWrapper.html:37(a)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:671(span)
#: doc/reference/en/Test/Unit/Util.html:39(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2750(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2786(span)
#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:849(a)
msgid "Util"
msgstr ""
#: doc/reference/en/Test/Unit/Util/MethodOwnerFinder.html:39(span)
#: doc/reference/en/Test/Unit/Util.html:86(a)
-#: doc/reference/en/Test/Unit/TestCase.html:2750(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2786(span)
#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:456(a)
msgid "MethodOwnerFinder"
msgstr ""
@@ -487,11 +487,11 @@ msgstr ""
#: doc/reference/en/Test/Unit/Pending.html:729(span)
#: doc/reference/en/Test/Unit/NullResultContainerInitializer.html:42(span)
#: doc/reference/en/Test/Unit/Fixture.html:42(span)
+#: doc/reference/en/Test/Unit/Fixture.html:168(span)
#: doc/reference/en/Test/Unit/Fixture.html:169(span)
-#: doc/reference/en/Test/Unit/Fixture.html:170(span)
-#: doc/reference/en/Test/Unit/Fixture.html:175(span)
-#: doc/reference/en/Test/Unit/Fixture.html:177(span)
-#: doc/reference/en/Test/Unit/Fixture.html:181(span)
+#: doc/reference/en/Test/Unit/Fixture.html:174(span)
+#: doc/reference/en/Test/Unit/Fixture.html:176(span)
+#: doc/reference/en/Test/Unit/Fixture.html:179(span)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:42(span)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:666(span)
#: doc/reference/en/Test/Unit/NotifiedError.html:42(span)
@@ -722,26 +722,26 @@ msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:669(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:697(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:698(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:726(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:727(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:755(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:756(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:784(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:785(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:812(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:813(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:840(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:841(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:868(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:869(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:896(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:897(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:924(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:925(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:952(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:953(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:980(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:981(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:728(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:757(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:758(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:786(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:787(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:814(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:815(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:842(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:843(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:870(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:871(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:898(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:899(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:926(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:927(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:954(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:955(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:982(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:983(span)
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:42(span)
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:284(span)
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:286(span)
@@ -819,220 +819,220 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:2029(span)
#: doc/reference/en/Test/Unit/Assertions.html:2033(span)
#: doc/reference/en/Test/Unit/Assertions.html:2034(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2077(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2080(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2083(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2081(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2084(span)
#: doc/reference/en/Test/Unit/Assertions.html:2087(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2090(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2113(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2114(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2115(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2116(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2147(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2149(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2151(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2091(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2098(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2121(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2122(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2123(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2124(span)
#: doc/reference/en/Test/Unit/Assertions.html:2155(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2156(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2211(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2214(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2215(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2218(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2220(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2157(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2159(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2163(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2164(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2219(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2222(span)
#: doc/reference/en/Test/Unit/Assertions.html:2223(span)
#: doc/reference/en/Test/Unit/Assertions.html:2226(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2228(span)
#: doc/reference/en/Test/Unit/Assertions.html:2231(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2233(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2235(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2293(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2296(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2297(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2300(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2302(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2239(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2241(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2243(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2301(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2304(span)
#: doc/reference/en/Test/Unit/Assertions.html:2305(span)
#: doc/reference/en/Test/Unit/Assertions.html:2308(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2315(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2317(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2319(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2358(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2360(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2362(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2310(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2313(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2316(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2323(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2325(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2327(span)
#: doc/reference/en/Test/Unit/Assertions.html:2366(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2367(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2398(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2399(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2402(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2434(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2436(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2439(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2461(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2462(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2490(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2492(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2495(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2496(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2519(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2520(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2521(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2522(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2523(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2524(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2554(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2556(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2558(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2561(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2592(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2593(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2594(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2633(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2635(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2638(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2368(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2370(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2374(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2375(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2406(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2407(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2410(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2442(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2444(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2447(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2469(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2470(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2498(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2500(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2503(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2504(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2527(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2528(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2529(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2530(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2531(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2532(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2562(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2564(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2566(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2569(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2600(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2601(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2602(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2641(span)
#: doc/reference/en/Test/Unit/Assertions.html:2643(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2644(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2688(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2691(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2694(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2646(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2651(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2652(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2696(span)
#: doc/reference/en/Test/Unit/Assertions.html:2699(span)
#: doc/reference/en/Test/Unit/Assertions.html:2702(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2725(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2726(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2727(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2728(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2759(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2761(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2763(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2707(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2710(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2733(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2734(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2735(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2736(span)
#: doc/reference/en/Test/Unit/Assertions.html:2767(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2768(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2805(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2807(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2810(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2769(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2771(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2775(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2776(span)
#: doc/reference/en/Test/Unit/Assertions.html:2813(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2842(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2843(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2844(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2865(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2866(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2899(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2901(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2902(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2903(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2815(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2818(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2821(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2850(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2851(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2852(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2873(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2874(span)
#: doc/reference/en/Test/Unit/Assertions.html:2907(span)
#: doc/reference/en/Test/Unit/Assertions.html:2909(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2952(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2954(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2958(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2959(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2961(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2965(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2999(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3000(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3006(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3036(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3037(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3083(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3085(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3088(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3099(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3102(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3105(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3106(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3156(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3158(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2910(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2911(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2915(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2917(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2960(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2962(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2966(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2967(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2969(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2973(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3007(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3008(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3014(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3044(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3045(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3091(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3093(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3096(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3107(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3110(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3113(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3114(span)
#: doc/reference/en/Test/Unit/Assertions.html:3164(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3168(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3169(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3170(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3171(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3218(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3220(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3227(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3230(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3232(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3269(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3271(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3272(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3273(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3278(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3300(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3301(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3302(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3330(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3332(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3335(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3336(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3359(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3360(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3361(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3389(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3391(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3394(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3395(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3418(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3419(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3452(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3454(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3455(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3456(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3166(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3172(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3176(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3177(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3178(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3179(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3226(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3228(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3235(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3238(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3240(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3277(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3279(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3280(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3281(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3286(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3308(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3309(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3310(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3338(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3340(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3343(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3344(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3367(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3368(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3369(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3397(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3399(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3402(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3403(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3426(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3427(span)
#: doc/reference/en/Test/Unit/Assertions.html:3460(span)
#: doc/reference/en/Test/Unit/Assertions.html:3462(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3502(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3506(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3509(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3463(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3464(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3468(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3470(span)
#: doc/reference/en/Test/Unit/Assertions.html:3510(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3513(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3535(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3569(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3573(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3514(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3517(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3518(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3521(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3543(span)
#: doc/reference/en/Test/Unit/Assertions.html:3577(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3578(span)
#: doc/reference/en/Test/Unit/Assertions.html:3581(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3603(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3604(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3605(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3606(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3655(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3657(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3662(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3672(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3674(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3677(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3678(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3711(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3712(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3752(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3754(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3758(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3759(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3761(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3765(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3799(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3800(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3806(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3858(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3860(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3863(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3874(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3877(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3880(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3881(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3941(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3944(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3946(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3585(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3586(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3589(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3611(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3612(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3613(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3614(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3663(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3665(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3670(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3680(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3682(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3685(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3686(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3719(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3720(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3760(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3762(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3766(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3767(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3769(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3773(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3807(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3808(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3814(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3866(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3868(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3871(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3882(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3885(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3888(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3889(span)
#: doc/reference/en/Test/Unit/Assertions.html:3949(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3952(span)
#: doc/reference/en/Test/Unit/Assertions.html:3954(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3958(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3961(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3957(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3962(span)
#: doc/reference/en/Test/Unit/Assertions.html:3966(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3970(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4012(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4013(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4034(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4035(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4062(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4064(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4097(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4099(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4126(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4127(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3969(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3974(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3978(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4020(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4021(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4042(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4043(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4070(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4072(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4105(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4107(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4134(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4135(span)
#: doc/reference/en/Test/Unit/PendedError.html:42(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:42(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:208(span)
@@ -1224,18 +1224,18 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1924(span)
#: doc/reference/en/Test/Unit/TestCase.html:1965(span)
#: doc/reference/en/Test/Unit/TestCase.html:1966(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2106(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2286(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2405(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2409(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2410(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2418(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2423(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2428(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2429(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2743(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2744(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2750(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2118(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2298(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2417(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2421(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2422(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2430(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2435(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2440(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2441(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2779(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2780(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2786(span)
#: doc/reference/en/Test/Unit/ErrorHandler.html:42(span)
#: doc/reference/en/Test/Unit/ErrorHandler.html:175(span)
#: doc/reference/en/Test/Unit/ErrorHandler.html:176(span)
@@ -1668,11 +1668,11 @@ msgstr ""
#: doc/reference/en/Test/Unit/Pending.html:729(span)
#: doc/reference/en/Test/Unit/NullResultContainerInitializer.html:42(span)
#: doc/reference/en/Test/Unit/Fixture.html:42(span)
+#: doc/reference/en/Test/Unit/Fixture.html:168(span)
#: doc/reference/en/Test/Unit/Fixture.html:169(span)
-#: doc/reference/en/Test/Unit/Fixture.html:170(span)
-#: doc/reference/en/Test/Unit/Fixture.html:175(span)
-#: doc/reference/en/Test/Unit/Fixture.html:178(span)
-#: doc/reference/en/Test/Unit/Fixture.html:181(span)
+#: doc/reference/en/Test/Unit/Fixture.html:174(span)
+#: doc/reference/en/Test/Unit/Fixture.html:176(span)
+#: doc/reference/en/Test/Unit/Fixture.html:179(span)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:42(span)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:666(span)
#: doc/reference/en/Test/Unit/NotifiedError.html:42(span)
@@ -1903,26 +1903,26 @@ msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:669(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:697(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:699(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:726(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:727(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:755(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:729(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:757(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:784(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:785(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:812(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:813(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:840(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:841(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:868(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:869(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:896(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:897(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:924(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:925(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:952(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:953(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:980(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:981(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:759(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:786(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:787(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:814(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:815(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:842(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:843(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:870(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:871(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:898(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:899(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:926(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:927(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:954(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:955(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:982(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:983(span)
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:42(span)
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:284(span)
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:286(span)
@@ -2000,220 +2000,220 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:2032(span)
#: doc/reference/en/Test/Unit/Assertions.html:2033(span)
#: doc/reference/en/Test/Unit/Assertions.html:2034(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2078(span)
#: doc/reference/en/Test/Unit/Assertions.html:2082(span)
#: doc/reference/en/Test/Unit/Assertions.html:2086(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2087(span)
#: doc/reference/en/Test/Unit/Assertions.html:2090(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2113(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2114(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2115(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2116(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2147(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2150(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2154(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2091(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2098(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2121(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2122(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2123(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2124(span)
#: doc/reference/en/Test/Unit/Assertions.html:2155(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2156(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2211(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2214(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2216(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2218(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2220(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2223(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2158(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2162(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2163(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2164(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2219(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2222(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2224(span)
#: doc/reference/en/Test/Unit/Assertions.html:2226(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2228(span)
#: doc/reference/en/Test/Unit/Assertions.html:2231(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2233(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2235(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2293(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2296(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2298(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2300(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2302(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2305(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2314(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2315(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2317(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2319(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2358(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2360(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2362(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2239(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2241(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2243(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2301(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2304(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2306(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2308(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2310(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2313(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2322(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2323(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2325(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2327(span)
#: doc/reference/en/Test/Unit/Assertions.html:2366(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2367(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2398(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2399(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2402(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2434(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2438(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2439(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2461(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2462(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2490(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2494(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2495(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2496(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2519(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2520(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2521(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2522(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2523(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2524(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2554(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2557(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2560(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2561(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2592(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2593(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2594(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2633(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2637(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2642(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2643(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2644(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2689(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2693(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2698(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2699(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2702(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2725(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2726(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2727(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2728(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2759(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2762(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2766(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2368(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2370(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2374(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2375(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2406(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2407(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2410(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2442(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2446(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2447(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2469(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2470(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2498(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2502(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2503(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2504(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2527(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2528(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2529(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2530(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2531(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2532(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2562(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2565(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2568(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2569(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2600(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2601(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2602(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2641(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2645(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2650(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2651(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2652(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2697(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2701(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2706(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2707(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2710(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2733(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2734(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2735(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2736(span)
#: doc/reference/en/Test/Unit/Assertions.html:2767(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2768(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2805(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2809(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2812(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2770(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2774(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2775(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2776(span)
#: doc/reference/en/Test/Unit/Assertions.html:2813(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2842(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2843(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2844(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2865(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2866(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2899(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2901(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2902(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2817(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2820(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2821(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2850(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2851(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2852(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2873(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2874(span)
#: doc/reference/en/Test/Unit/Assertions.html:2907(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2908(span)
#: doc/reference/en/Test/Unit/Assertions.html:2909(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2952(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2957(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2958(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2959(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2964(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2910(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2915(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2916(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2917(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2960(span)
#: doc/reference/en/Test/Unit/Assertions.html:2965(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2999(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3000(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3006(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3036(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3037(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3083(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3087(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3090(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3102(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3104(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3105(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3106(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3156(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3158(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2966(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2967(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2972(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2973(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3007(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3008(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3014(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3044(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3045(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3091(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3095(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3098(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3110(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3112(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3113(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3114(span)
#: doc/reference/en/Test/Unit/Assertions.html:3164(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3168(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3169(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3170(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3171(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3218(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3220(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3229(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3230(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3232(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3269(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3271(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3272(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3273(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3278(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3300(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3301(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3302(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3330(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3334(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3335(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3336(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3359(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3360(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3361(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3389(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3393(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3394(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3395(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3418(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3419(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3452(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3454(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3455(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3166(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3172(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3176(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3177(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3178(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3179(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3226(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3228(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3237(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3238(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3240(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3277(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3279(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3280(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3281(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3286(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3308(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3309(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3310(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3338(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3342(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3343(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3344(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3367(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3368(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3369(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3397(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3401(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3402(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3403(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3426(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3427(span)
#: doc/reference/en/Test/Unit/Assertions.html:3460(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3461(span)
#: doc/reference/en/Test/Unit/Assertions.html:3462(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3502(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3508(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3509(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3463(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3468(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3469(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3470(span)
#: doc/reference/en/Test/Unit/Assertions.html:3510(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3513(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3535(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3569(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3576(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3516(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3517(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3518(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3521(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3543(span)
#: doc/reference/en/Test/Unit/Assertions.html:3577(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3578(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3581(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3603(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3604(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3605(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3606(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3655(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3660(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3662(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3672(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3676(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3677(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3678(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3711(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3712(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3752(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3757(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3758(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3759(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3764(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3584(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3585(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3586(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3589(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3611(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3612(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3613(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3614(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3663(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3668(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3670(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3680(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3684(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3685(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3686(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3719(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3720(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3760(span)
#: doc/reference/en/Test/Unit/Assertions.html:3765(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3799(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3800(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3806(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3858(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3862(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3865(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3877(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3879(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3880(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3881(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3941(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3944(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3947(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3766(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3767(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3772(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3773(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3807(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3808(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3814(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3866(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3870(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3873(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3885(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3887(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3888(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3889(span)
#: doc/reference/en/Test/Unit/Assertions.html:3949(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3954(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3960(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3961(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3952(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3955(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3957(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3962(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3968(span)
#: doc/reference/en/Test/Unit/Assertions.html:3969(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3970(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4012(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4013(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4034(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4035(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4062(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4066(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4097(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4099(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4126(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4127(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3977(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3978(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4020(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4021(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4042(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4043(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4070(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4074(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4105(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4107(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4134(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4135(span)
#: doc/reference/en/Test/Unit/PendedError.html:42(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:42(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:208(span)
@@ -2405,19 +2405,19 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1924(span)
#: doc/reference/en/Test/Unit/TestCase.html:1965(span)
#: doc/reference/en/Test/Unit/TestCase.html:1966(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2106(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2284(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2286(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2405(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2409(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2410(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2418(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2423(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2428(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2429(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2743(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2744(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2750(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2118(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2296(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2298(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2417(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2421(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2422(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2430(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2435(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2440(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2441(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2779(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2780(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2786(span)
#: doc/reference/en/Test/Unit/ErrorHandler.html:42(span)
#: doc/reference/en/Test/Unit/ErrorHandler.html:175(span)
#: doc/reference/en/Test/Unit/ErrorHandler.html:176(span)
@@ -3279,9 +3279,9 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:358(small)
#: doc/reference/en/Test/Unit/TestCase.html:434(small)
#: doc/reference/en/Test/Unit/TestCase.html:675(small)
-#: doc/reference/en/Test/Unit/TestCase.html:2217(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2318(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2710(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2229(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2330(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2746(span)
#: doc/reference/en/Test/Unit/ErrorHandler.html:120(small)
#: doc/reference/en/Test/Unit/Data.html:102(small)
#: doc/reference/en/Test/Unit/UI/TestRunnerUtilities.html:108(small)
@@ -3423,7 +3423,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/Util/MethodOwnerFinder.html:96(strong)
#: doc/reference/en/Test/Unit/Util/MethodOwnerFinder.html:126(strong)
#: doc/reference/en/Test/Unit/Util/MethodOwnerFinder.html:159(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2750(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2786(span)
msgid "find"
msgstr ""
@@ -3677,15 +3677,15 @@ msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:651(tt)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:679(tt)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:709(tt)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:737(tt)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:767(tt)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:795(tt)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:823(tt)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:851(tt)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:879(tt)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:907(tt)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:935(tt)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:963(tt)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:739(tt)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:769(tt)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:797(tt)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:825(tt)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:853(tt)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:881(tt)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:909(tt)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:937(tt)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:965(tt)
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:208(tt)
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:254(tt)
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:297(tt)
@@ -3703,43 +3703,43 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1940(tt)
#: doc/reference/en/Test/Unit/Assertions.html:1996(tt)
#: doc/reference/en/Test/Unit/Assertions.html:2046(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2102(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2168(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2248(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2332(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2378(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2412(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2450(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2461(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2508(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2574(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2604(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2656(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2714(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2780(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2824(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2854(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2922(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2976(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3016(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3119(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3187(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3243(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3289(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3348(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3407(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3475(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3523(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3591(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3694(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3722(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3776(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3816(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3894(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3982(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:4023(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:4079(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:4109(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2110(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2176(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2256(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2340(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2386(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2420(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2458(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2469(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2516(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2582(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2612(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2664(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2722(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2788(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2832(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2862(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2930(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2984(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:3024(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:3127(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:3195(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:3251(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:3297(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:3356(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:3415(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:3483(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:3531(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:3599(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:3702(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:3730(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:3784(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:3824(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:3902(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:3990(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:4031(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:4087(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:4117(tt)
#: doc/reference/en/Test/Unit/PendedError.html:72(li)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:72(li)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:166(tt)
@@ -3828,17 +3828,17 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1892(tt)
#: doc/reference/en/Test/Unit/TestCase.html:1937(tt)
#: doc/reference/en/Test/Unit/TestCase.html:1976(tt)
-#: doc/reference/en/Test/Unit/TestCase.html:2048(tt)
-#: doc/reference/en/Test/Unit/TestCase.html:2088(tt)
-#: doc/reference/en/Test/Unit/TestCase.html:2116(tt)
-#: doc/reference/en/Test/Unit/TestCase.html:2158(tt)
-#: doc/reference/en/Test/Unit/TestCase.html:2249(tt)
-#: doc/reference/en/Test/Unit/TestCase.html:2350(tt)
-#: doc/reference/en/Test/Unit/TestCase.html:2442(tt)
-#: doc/reference/en/Test/Unit/TestCase.html:2513(tt)
-#: doc/reference/en/Test/Unit/TestCase.html:2541(tt)
-#: doc/reference/en/Test/Unit/TestCase.html:2580(tt)
-#: doc/reference/en/Test/Unit/TestCase.html:2651(tt)
+#: doc/reference/en/Test/Unit/TestCase.html:2060(tt)
+#: doc/reference/en/Test/Unit/TestCase.html:2100(tt)
+#: doc/reference/en/Test/Unit/TestCase.html:2128(tt)
+#: doc/reference/en/Test/Unit/TestCase.html:2170(tt)
+#: doc/reference/en/Test/Unit/TestCase.html:2261(tt)
+#: doc/reference/en/Test/Unit/TestCase.html:2362(tt)
+#: doc/reference/en/Test/Unit/TestCase.html:2454(tt)
+#: doc/reference/en/Test/Unit/TestCase.html:2537(tt)
+#: doc/reference/en/Test/Unit/TestCase.html:2565(tt)
+#: doc/reference/en/Test/Unit/TestCase.html:2604(tt)
+#: doc/reference/en/Test/Unit/TestCase.html:2687(tt)
#: doc/reference/en/Test/Unit/ErrorHandler.html:158(tt)
#: doc/reference/en/Test/Unit/Data.html:140(tt)
#: doc/reference/en/Test/Unit/UI/TestRunnerUtilities.html:172(tt)
@@ -4048,7 +4048,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/Pending.html:728(span)
#: doc/reference/en/Test/Unit/Pending.html:767(span)
#: doc/reference/en/Test/Unit/Pending.html:806(span)
-#: doc/reference/en/Test/Unit/Fixture.html:169(span)
+#: doc/reference/en/Test/Unit/Fixture.html:168(span)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:452(span)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:504(span)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:546(span)
@@ -4153,16 +4153,16 @@ msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:640(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:668(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:697(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:726(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:755(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:784(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:812(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:840(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:868(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:896(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:924(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:952(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:980(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:727(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:757(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:786(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:814(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:842(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:870(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:898(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:926(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:954(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:982(span)
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:236(span)
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:284(span)
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:325(span)
@@ -4180,43 +4180,43 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1918(span)
#: doc/reference/en/Test/Unit/Assertions.html:1979(span)
#: doc/reference/en/Test/Unit/Assertions.html:2024(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2077(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2147(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2211(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2293(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2358(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2398(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2434(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2490(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2554(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2592(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2633(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2688(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2759(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2805(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2842(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2899(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2952(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2999(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3083(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3156(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3218(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3269(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3330(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3389(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3452(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3502(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3569(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3655(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3711(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3752(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3799(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3858(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3941(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4012(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4062(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4097(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4126(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2081(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2155(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2219(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2301(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2366(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2406(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2442(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2498(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2562(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2600(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2641(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2696(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2767(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2813(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2850(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2907(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2960(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3007(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3091(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3164(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3226(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3277(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3338(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3397(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3460(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3510(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3577(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3663(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3719(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3760(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3807(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3866(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3949(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4020(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4070(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4105(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4134(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:208(span)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:278(span)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:316(span)
@@ -4296,21 +4296,21 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1875(span)
#: doc/reference/en/Test/Unit/TestCase.html:1923(span)
#: doc/reference/en/Test/Unit/TestCase.html:1965(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2038(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2077(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2105(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2147(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2186(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2238(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2282(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2339(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2405(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2503(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2530(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2569(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2641(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2679(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2742(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2050(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2089(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2117(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2159(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2198(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2250(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2294(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2351(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2417(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2527(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2554(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2593(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2677(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2715(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2778(span)
#: doc/reference/en/Test/Unit/ErrorHandler.html:175(span)
#: doc/reference/en/Test/Unit/Data.html:157(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerUtilities.html:200(span)
@@ -4507,54 +4507,54 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1774(span)
#: doc/reference/en/Test/Unit/Assertions.html:1778(span)
#: doc/reference/en/Test/Unit/Assertions.html:1780(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2109(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2147(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2154(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2156(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2211(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2233(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2235(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2293(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2312(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2314(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2317(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2319(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2398(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2399(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2402(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2457(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2490(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2494(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2496(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2515(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2554(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2556(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2560(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2117(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2155(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2162(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2164(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2219(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2241(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2243(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2301(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2320(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2322(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2325(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2327(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2406(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2407(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2410(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2465(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2498(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2502(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2504(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2523(tt)
#: doc/reference/en/Test/Unit/Assertions.html:2562(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2721(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2759(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2766(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2768(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2842(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2843(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2844(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2861(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2899(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2901(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2902(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2906(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2952(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2964(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2965(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3414(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3452(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3454(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3455(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3459(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3752(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3764(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3765(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2564(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2568(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2570(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2729(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2767(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2774(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2776(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2850(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2851(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2852(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2869(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2907(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2909(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2910(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2914(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2960(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2972(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2973(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3422(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:3460(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3462(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3463(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3467(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3760(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3772(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3773(span)
msgid "object"
msgstr ""
@@ -4591,11 +4591,11 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestSuiteCreator.html:268(span)
#: doc/reference/en/Test/Unit/TestSuiteCreator.html:271(span)
#: doc/reference/en/Test/Unit/Pending.html:430(span)
+#: doc/reference/en/Test/Unit/Fixture.html:171(span)
#: doc/reference/en/Test/Unit/Fixture.html:172(span)
-#: doc/reference/en/Test/Unit/Fixture.html:173(span)
-#: doc/reference/en/Test/Unit/Fixture.html:175(span)
-#: doc/reference/en/Test/Unit/Fixture.html:177(span)
-#: doc/reference/en/Test/Unit/Fixture.html:181(span)
+#: doc/reference/en/Test/Unit/Fixture.html:174(span)
+#: doc/reference/en/Test/Unit/Fixture.html:176(span)
+#: doc/reference/en/Test/Unit/Fixture.html:179(span)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:666(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Inspector.html:346(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Inspector.html:432(span)
@@ -4701,23 +4701,27 @@ msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:585(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:613(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:641(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:668(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:669(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:697(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:698(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:699(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:726(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:727(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:755(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:756(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:728(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:729(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:757(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:785(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:813(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:841(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:869(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:897(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:925(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:953(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:981(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:758(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:759(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:786(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:787(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:814(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:815(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:843(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:871(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:899(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:927(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:955(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:983(span)
#: doc/reference/en/Test/Unit/Assertions.html:104(span)
#: doc/reference/en/Test/Unit/Assertions.html:105(span)
#: doc/reference/en/Test/Unit/Assertions.html:136(span)
@@ -4778,189 +4782,189 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:2029(span)
#: doc/reference/en/Test/Unit/Assertions.html:2030(span)
#: doc/reference/en/Test/Unit/Assertions.html:2031(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2077(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2080(span)
#: doc/reference/en/Test/Unit/Assertions.html:2081(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2083(span)
#: doc/reference/en/Test/Unit/Assertions.html:2084(span)
#: doc/reference/en/Test/Unit/Assertions.html:2085(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2113(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2114(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2115(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2116(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2147(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2149(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2151(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2152(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2153(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2211(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2293(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2308(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2311(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2312(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2313(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2358(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2087(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2088(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2089(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2121(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2122(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2123(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2124(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2155(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2157(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2159(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2160(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2161(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2219(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2301(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2316(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2319(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2320(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2321(span)
#: doc/reference/en/Test/Unit/Assertions.html:2366(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2398(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2399(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2434(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2436(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2439(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2461(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2462(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2490(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2492(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2493(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2494(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2554(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2556(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2558(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2559(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2592(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2593(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2633(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2635(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2636(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2638(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2639(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2640(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2374(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2406(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2407(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2442(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2444(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2447(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2469(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2470(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2498(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2500(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2501(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2502(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2562(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2564(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2566(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2567(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2600(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2601(span)
#: doc/reference/en/Test/Unit/Assertions.html:2641(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2688(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2691(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2692(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2694(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2695(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2643(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2644(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2646(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2647(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2648(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2649(span)
#: doc/reference/en/Test/Unit/Assertions.html:2696(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2697(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2725(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2726(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2727(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2728(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2759(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2761(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2763(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2764(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2765(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2805(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2807(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2810(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2811(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2812(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2842(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2843(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2865(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2866(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2899(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2901(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2903(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2905(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2906(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2699(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2700(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2702(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2703(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2704(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2705(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2733(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2734(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2735(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2736(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2767(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2769(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2771(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2772(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2773(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2813(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2815(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2818(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2819(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2820(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2850(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2851(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2873(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2874(span)
#: doc/reference/en/Test/Unit/Assertions.html:2907(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2952(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2954(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2956(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2957(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2961(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2963(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2909(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2911(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2913(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2914(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2915(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2960(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2962(span)
#: doc/reference/en/Test/Unit/Assertions.html:2964(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2999(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3000(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3036(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3037(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3083(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3085(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3088(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2965(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2969(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2971(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2972(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3007(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3008(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3044(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3045(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3091(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3093(span)
#: doc/reference/en/Test/Unit/Assertions.html:3096(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3099(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3100(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3101(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3102(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3103(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3106(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3164(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3170(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3218(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3220(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3223(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3104(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3107(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3108(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3109(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3110(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3111(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3114(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3172(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3178(span)
#: doc/reference/en/Test/Unit/Assertions.html:3226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3227(span)
#: doc/reference/en/Test/Unit/Assertions.html:3228(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3232(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3269(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3271(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3273(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3278(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3330(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3332(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3333(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3389(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3391(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3392(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3418(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3419(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3452(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3454(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3456(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3458(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3459(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3231(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3235(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3236(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3240(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3277(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3279(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3281(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3286(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3338(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3340(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3341(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3397(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3399(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3400(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3426(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3427(span)
#: doc/reference/en/Test/Unit/Assertions.html:3460(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3502(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3504(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3506(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3507(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3508(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3513(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3569(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3571(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3573(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3575(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3576(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3578(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3462(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3464(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3466(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3467(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3468(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3510(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3512(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3514(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3515(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3516(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3521(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3577(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3579(span)
#: doc/reference/en/Test/Unit/Assertions.html:3581(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3655(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3657(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3659(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3672(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3674(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3676(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3711(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3712(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3752(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3754(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3756(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3757(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3761(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3763(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3583(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3584(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3586(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3589(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3663(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3665(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3667(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3680(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3682(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3684(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3719(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3720(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3760(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3762(span)
#: doc/reference/en/Test/Unit/Assertions.html:3764(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3799(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3800(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3858(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3860(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3863(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3765(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3769(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3771(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3772(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3807(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3808(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3866(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3868(span)
#: doc/reference/en/Test/Unit/Assertions.html:3871(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3874(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3875(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3876(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3877(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3878(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3881(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3941(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3946(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3958(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3959(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3962(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3965(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3879(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3882(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3883(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3884(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3885(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3886(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3889(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3949(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3954(span)
#: doc/reference/en/Test/Unit/Assertions.html:3966(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3968(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3969(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4012(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4013(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4062(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4064(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4065(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4097(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4099(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3967(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3970(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3973(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3974(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3976(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3977(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4020(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4021(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4070(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4072(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4073(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4105(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4107(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:209(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:215(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:218(span)
@@ -5164,11 +5168,11 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1784(span)
#: doc/reference/en/Test/Unit/TestCase.html:1965(span)
#: doc/reference/en/Test/Unit/TestCase.html:1966(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2409(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2410(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2428(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2429(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2750(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2421(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2422(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2440(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2441(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2786(span)
#: doc/reference/en/Test/Unit/ErrorHandler.html:102(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerUtilities.html:200(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerUtilities.html:201(span)
@@ -5283,9 +5287,6 @@ msgstr ""
#: doc/reference/en/Test/Unit/ExceptionHandler.html:230(span)
#: doc/reference/en/Test/Unit/ExceptionHandler.html:232(span)
#: doc/reference/en/Test/Unit/ExceptionHandler.html:234(span)
-#: doc/reference/en/Test/Unit/Fixture.html:173(span)
-#: doc/reference/en/Test/Unit/Fixture.html:175(span)
-#: doc/reference/en/Test/Unit/Fixture.html:177(span)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:341(span)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:342(span)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:411(span)
@@ -5296,18 +5297,6 @@ msgstr ""
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:633(span)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:639(span)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:641(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:697(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:698(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:726(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:727(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:755(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:756(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:868(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:869(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:924(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:925(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:980(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:981(span)
#: doc/reference/en/Test/Unit/Assertions.html:1429(span)
#: doc/reference/en/Test/Unit/Assertions.html:1434(span)
#: doc/reference/en/Test/Unit/TestCase.html:364(strong)
@@ -5330,17 +5319,17 @@ msgstr ""
#: doc/reference/en/Test/Unit/Util/MethodOwnerFinder.html:163(span)
#: doc/reference/en/Test/Unit/Assertions.html:1441(span)
#: doc/reference/en/Test/Unit/Assertions.html:1449(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2952(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2957(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2959(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2964(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2960(span)
#: doc/reference/en/Test/Unit/Assertions.html:2965(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3752(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3757(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3759(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3764(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2967(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2972(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2973(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3760(span)
#: doc/reference/en/Test/Unit/Assertions.html:3765(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2744(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3767(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3772(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3773(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2780(span)
#: doc/reference/en/Test/Unit.html:184(em)
msgid "method"
msgstr ""
@@ -5404,7 +5393,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/Pending.html:432(span)
#: doc/reference/en/Test/Unit/Pending.html:433(span)
#: doc/reference/en/Test/Unit/Pending.html:689(span)
-#: doc/reference/en/Test/Unit/Fixture.html:173(span)
+#: doc/reference/en/Test/Unit/Fixture.html:172(span)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:453(span)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:454(span)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:455(span)
@@ -5537,115 +5526,116 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1979(span)
#: doc/reference/en/Test/Unit/Assertions.html:2024(span)
#: doc/reference/en/Test/Unit/Assertions.html:2029(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2077(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2078(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2083(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2088(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2089(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2147(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2151(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2211(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2213(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2214(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2223(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2293(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2295(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2296(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2305(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2308(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2358(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2360(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2081(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2082(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2087(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2092(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2094(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2096(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2155(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2159(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2219(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2221(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2222(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2231(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2301(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2303(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2304(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2313(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2316(span)
#: doc/reference/en/Test/Unit/Assertions.html:2366(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2398(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2399(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2434(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2490(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2492(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2554(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2558(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2592(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2593(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2633(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2638(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2688(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2689(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2694(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2700(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2701(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2759(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2763(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2805(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2810(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2842(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2843(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2899(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2902(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2903(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2952(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2954(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2961(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2999(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3000(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3083(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2368(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2374(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2406(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2407(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2442(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2498(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2500(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2562(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2566(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2600(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2601(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2641(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2646(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2696(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2697(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2702(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2708(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2709(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2767(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2771(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2813(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2818(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2850(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2851(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2907(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2910(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2911(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2960(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2962(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2969(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3007(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3008(span)
#: doc/reference/en/Test/Unit/Assertions.html:3091(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3096(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3097(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3098(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3099(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3104(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3105(span)
#: doc/reference/en/Test/Unit/Assertions.html:3106(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3159(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3161(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3164(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3170(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3218(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3225(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3114(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3167(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3169(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3172(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3178(span)
#: doc/reference/en/Test/Unit/Assertions.html:3226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3227(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3269(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3271(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3273(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3330(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3332(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3389(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3391(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3452(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3455(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3456(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3503(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3504(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3505(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3506(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3570(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3571(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3572(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3573(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3655(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3657(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3661(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3671(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3672(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3673(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3752(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3754(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3761(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3799(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3800(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3858(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3233(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3235(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3277(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3279(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3281(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3338(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3340(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3397(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3399(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3460(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3463(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3464(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3511(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3512(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3513(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3514(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3578(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3579(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3580(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3581(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3663(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3665(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3669(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3679(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3680(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3681(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3760(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3762(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3769(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3807(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3808(span)
#: doc/reference/en/Test/Unit/Assertions.html:3866(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3871(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3872(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3873(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3874(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3879(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3880(span)
#: doc/reference/en/Test/Unit/Assertions.html:3881(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3941(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3952(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3956(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3958(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3889(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3949(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3960(span)
#: doc/reference/en/Test/Unit/Assertions.html:3964(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3965(span)
#: doc/reference/en/Test/Unit/Assertions.html:3966(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4062(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4097(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4126(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3972(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3973(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3974(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4070(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4105(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4134(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:208(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:209(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:213(span)
@@ -5789,9 +5779,9 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1778(span)
#: doc/reference/en/Test/Unit/TestCase.html:1783(span)
#: doc/reference/en/Test/Unit/TestCase.html:1876(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2407(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2744(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2750(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2419(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2780(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2786(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerUtilities.html:200(span)
#: doc/reference/en/Test/Unit/UI/TestRunner.html:255(span)
#: doc/reference/en/Test/Unit/UI/TestRunner.html:257(span)
@@ -6022,13 +6012,12 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestSuiteCreator.html:271(span)
#: doc/reference/en/Test/Unit/Pending.html:689(span)
#: doc/reference/en/Test/Unit/Pending.html:729(span)
-#: doc/reference/en/Test/Unit/Fixture.html:170(span)
-#: doc/reference/en/Test/Unit/Fixture.html:172(span)
+#: doc/reference/en/Test/Unit/Fixture.html:169(span)
+#: doc/reference/en/Test/Unit/Fixture.html:171(span)
#: doc/reference/en/Test/Unit/Fixture.html:173(span)
#: doc/reference/en/Test/Unit/Fixture.html:174(span)
-#: doc/reference/en/Test/Unit/Fixture.html:175(span)
-#: doc/reference/en/Test/Unit/Fixture.html:177(span)
-#: doc/reference/en/Test/Unit/Fixture.html:181(span)
+#: doc/reference/en/Test/Unit/Fixture.html:176(span)
+#: doc/reference/en/Test/Unit/Fixture.html:179(span)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:718(span)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:902(span)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:930(span)
@@ -6232,83 +6221,85 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1861(span)
#: doc/reference/en/Test/Unit/Assertions.html:1862(span)
#: doc/reference/en/Test/Unit/Assertions.html:2034(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2088(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2089(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2090(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2156(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2214(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2218(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2220(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2223(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2092(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2093(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2094(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2096(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2098(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2164(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2222(span)
#: doc/reference/en/Test/Unit/Assertions.html:2226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2233(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2235(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2296(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2300(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2302(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2305(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2314(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2317(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2319(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2362(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2402(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2496(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2562(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2644(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2700(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2701(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2702(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2768(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2844(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2902(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2907(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2959(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2964(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2965(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3000(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3006(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3088(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3102(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3104(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3106(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3158(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3159(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3164(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3168(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3169(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3222(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3224(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3272(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3273(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3278(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3336(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3395(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3455(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3460(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3503(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3505(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3510(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3570(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3572(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2228(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2231(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2241(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2243(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2304(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2308(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2310(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2313(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2322(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2325(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2327(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2370(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2410(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2504(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2570(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2652(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2708(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2709(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2710(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2776(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2852(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2910(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2915(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2967(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2972(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2973(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3008(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3014(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3096(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3110(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3112(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3114(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3166(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3167(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3172(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3176(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3177(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3230(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3232(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3280(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3281(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3286(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3344(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3403(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3463(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3468(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3511(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3513(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3518(span)
#: doc/reference/en/Test/Unit/Assertions.html:3578(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3671(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3672(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3678(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3759(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3764(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3765(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3800(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3806(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3863(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3877(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3879(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3881(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3955(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3580(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3586(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3679(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3680(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3686(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3767(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3772(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3773(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3808(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3814(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3871(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3885(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3887(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3889(span)
#: doc/reference/en/Test/Unit/Assertions.html:3963(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3965(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4098(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4099(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3971(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3973(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4106(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4107(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:209(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:210(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:214(span)
@@ -6449,23 +6440,23 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1926(span)
#: doc/reference/en/Test/Unit/TestCase.html:1927(span)
#: doc/reference/en/Test/Unit/TestCase.html:1966(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2078(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2187(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2239(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2283(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2284(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2286(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2340(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2408(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2417(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2426(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2427(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2570(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2745(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2746(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2748(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2750(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2751(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2090(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2199(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2251(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2295(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2296(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2298(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2352(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2420(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2429(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2438(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2439(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2594(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2781(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2782(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2784(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2786(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2787(span)
#: doc/reference/en/Test/Unit/ErrorHandler.html:176(span)
#: doc/reference/en/Test/Unit/Data.html:158(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerUtilities.html:201(span)
@@ -6672,7 +6663,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:942(span)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:549(span)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:630(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4099(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4107(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:210(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:211(span)
#: doc/reference/en/Test/Unit/Collector.html:342(span)
@@ -6680,10 +6671,10 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1924(span)
#: doc/reference/en/Test/Unit/TestCase.html:1925(span)
#: doc/reference/en/Test/Unit/TestCase.html:1926(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2743(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2746(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2748(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2752(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2779(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2782(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2784(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2788(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerUtilities.html:201(span)
#: doc/reference/en/Test/Unit/UI/Console/ColorizedReadableDiffer.html:288(span)
#: doc/reference/en/Test/Unit/Priority.html:593(span)
@@ -6698,8 +6689,8 @@ msgid "return"
msgstr ""
#: doc/reference/en/Test/Unit/Util/MethodOwnerFinder.html:161(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2750(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2751(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2786(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2787(span)
msgid "owner"
msgstr ""
@@ -6724,7 +6715,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestSuiteCreator.html:258(span)
#: doc/reference/en/Test/Unit/TestSuiteCreator.html:260(span)
#: doc/reference/en/Test/Unit/TestSuiteCreator.html:271(span)
-#: doc/reference/en/Test/Unit/Fixture.html:174(span)
+#: doc/reference/en/Test/Unit/Fixture.html:173(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/MaybeContainer.html:236(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:375(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:676(span)
@@ -6751,17 +6742,18 @@ msgstr ""
#: doc/reference/en/Test/Unit/ColorScheme.html:627(span)
#: doc/reference/en/Test/Unit/Assertions.html:1508(span)
#: doc/reference/en/Test/Unit/Assertions.html:1838(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2214(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2217(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2232(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2296(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2299(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2316(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3158(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3168(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3678(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3965(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2093(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2222(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2225(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2240(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2304(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2307(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2324(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3166(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3176(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3686(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3973(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:210(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:211(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:214(span)
@@ -6803,9 +6795,9 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1768(span)
#: doc/reference/en/Test/Unit/TestCase.html:1770(span)
#: doc/reference/en/Test/Unit/TestCase.html:1774(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2283(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2745(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2751(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2295(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2781(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2787(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerUtilities.html:246(span)
#: doc/reference/en/Test/Unit/UI/TestRunner.html:256(span)
#: doc/reference/en/Test/Unit/UI/XML/TestRunner.html:243(span)
@@ -6847,13 +6839,13 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:872(span)
#: doc/reference/en/Test/Unit/Assertions.html:1838(span)
#: doc/reference/en/Test/Unit/Assertions.html:1839(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2959(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2965(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3272(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3759(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3765(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2967(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2973(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3280(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3767(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3773(span)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:500(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2743(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2779(span)
#: doc/reference/en/Test/Unit/UI/TestRunner.html:256(span)
msgid "respond_to?"
msgstr ""
@@ -6878,7 +6870,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:136(span)
#: doc/reference/en/Test/Unit/Assertions.html:137(span)
#: doc/reference/en/Test/Unit/Assertions.html:138(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3604(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3612(span)
#: doc/reference/en/Test/Unit/Collector/XML/Listener.html:107(span)
#: doc/reference/en/Test/Unit/Collector/XML/Listener.html:553(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:392(span)
@@ -6909,10 +6901,10 @@ msgstr ""
#: doc/reference/en/Test/Unit/Util/BacktraceFilter.html:223(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:742(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1092(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2367(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3224(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3679(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3963(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2375(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3232(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3687(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3971(span)
#: doc/reference/en/Test/Unit/Collector/XML/Listener.html:553(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:777(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:781(span)
@@ -6955,16 +6947,16 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1509(span)
#: doc/reference/en/Test/Unit/Assertions.html:1636(span)
#: doc/reference/en/Test/Unit/Assertions.html:1637(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3102(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3877(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3110(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3885(span)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:343(strong)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:614(strong)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:631(span)
#: doc/reference/en/Test/Unit/Collector.html:416(span)
#: doc/reference/en/Test/Unit/TestCase.html:1053(strong)
#: doc/reference/en/Test/Unit/TestCase.html:1493(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2651(strong)
-#: doc/reference/en/Test/Unit/TestCase.html:2679(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2687(strong)
+#: doc/reference/en/Test/Unit/TestCase.html:2715(span)
#: doc/reference/en/Test/Unit/Error.html:393(strong)
#: doc/reference/en/Test/Unit/Error.html:837(strong)
#: doc/reference/en/Test/Unit/Error.html:865(span)
@@ -6993,8 +6985,8 @@ msgid "owner_name"
msgstr ""
#: doc/reference/en/Test/Unit/Util/MethodOwnerFinder.html:164(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3225(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3964(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3233(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3972(span)
#: doc/reference/en/Test/Unit/Color.html:548(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2238(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2252(span)
@@ -7028,9 +7020,9 @@ msgid "each_object"
msgstr ""
#: doc/reference/en/Test/Unit/Util/MethodOwnerFinder.html:166(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2300(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2302(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2751(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2308(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2310(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2787(span)
msgid "Module"
msgstr ""
@@ -7047,8 +7039,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestSuiteCreator.html:259(span)
#: doc/reference/en/Test/Unit/TestSuiteCreator.html:261(span)
#: doc/reference/en/Test/Unit/TestSuiteCreator.html:262(span)
+#: doc/reference/en/Test/Unit/Fixture.html:171(span)
#: doc/reference/en/Test/Unit/Fixture.html:172(span)
-#: doc/reference/en/Test/Unit/Fixture.html:173(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/MaybeContainer.html:237(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:289(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:442(span)
@@ -7094,63 +7086,63 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1983(span)
#: doc/reference/en/Test/Unit/Assertions.html:2025(span)
#: doc/reference/en/Test/Unit/Assertions.html:2033(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2079(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2087(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2148(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2155(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2212(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2216(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2223(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2083(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2091(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2156(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2163(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2220(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2224(span)
#: doc/reference/en/Test/Unit/Assertions.html:2231(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2294(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2298(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2305(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2315(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2359(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2435(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2491(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2495(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2555(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2561(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2634(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2643(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2690(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2699(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2760(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2767(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2806(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2900(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2909(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2953(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2958(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3084(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3105(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3157(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3219(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3270(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3331(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3335(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3390(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3394(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3453(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3462(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3503(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3509(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3535(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3570(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3577(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3656(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3662(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3677(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3753(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3758(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3859(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3880(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3942(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3949(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3954(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4063(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4066(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2239(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2302(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2306(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2313(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2323(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2367(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2443(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2499(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2503(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2563(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2569(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2642(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2651(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2698(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2707(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2768(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2775(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2814(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2908(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2917(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2961(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2966(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3092(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3113(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3165(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3227(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3278(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3339(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3343(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3398(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3402(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3461(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3470(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3511(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3517(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3543(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3578(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3585(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3664(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3670(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3685(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3761(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3766(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3867(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3888(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3950(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3957(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3962(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4071(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4074(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:217(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:219(span)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:376(span)
@@ -7234,8 +7226,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestSuiteCreator.html:259(span)
#: doc/reference/en/Test/Unit/TestSuiteCreator.html:261(span)
#: doc/reference/en/Test/Unit/TestSuiteCreator.html:262(span)
+#: doc/reference/en/Test/Unit/Fixture.html:171(span)
#: doc/reference/en/Test/Unit/Fixture.html:172(span)
-#: doc/reference/en/Test/Unit/Fixture.html:173(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/MaybeContainer.html:237(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:289(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:443(span)
@@ -7254,14 +7246,14 @@ msgstr ""
#: doc/reference/en/Test/Unit/ColorScheme.html:444(span)
#: doc/reference/en/Test/Unit/ColorScheme.html:902(span)
#: doc/reference/en/Test/Unit/Assertions.html:1429(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2218(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2223(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2233(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2300(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2305(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2317(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3503(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3570(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2226(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2231(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2241(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2308(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2313(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2325(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3511(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3578(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:217(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:219(span)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:376(span)
@@ -7361,11 +7353,11 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1462(span)
#: doc/reference/en/Test/Unit/Assertions.html:1856(span)
#: doc/reference/en/Test/Unit/Assertions.html:1984(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3510(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3681(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3965(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4067(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3518(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3689(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3973(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4075(span)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:377(span)
#: doc/reference/en/Test/Unit/Collector.html:344(span)
#: doc/reference/en/Test/Unit/Collector/XML/Listener.html:573(span)
@@ -7383,7 +7375,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1925(span)
#: doc/reference/en/Test/Unit/TestCase.html:1926(span)
#: doc/reference/en/Test/Unit/TestCase.html:1927(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2746(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2782(span)
#: doc/reference/en/Test/Unit/Color.html:216(strong)
#: doc/reference/en/Test/Unit/Color.html:598(strong)
#: doc/reference/en/Test/Unit/Color.html:619(span)
@@ -7494,10 +7486,10 @@ msgstr ""
#: doc/reference/en/Test/Unit/Pending.html:730(span)
#: doc/reference/en/Test/Unit/Pending.html:769(span)
#: doc/reference/en/Test/Unit/Pending.html:808(span)
-#: doc/reference/en/Test/Unit/Fixture.html:179(span)
+#: doc/reference/en/Test/Unit/Fixture.html:177(span)
+#: doc/reference/en/Test/Unit/Fixture.html:178(span)
#: doc/reference/en/Test/Unit/Fixture.html:180(span)
-#: doc/reference/en/Test/Unit/Fixture.html:182(span)
-#: doc/reference/en/Test/Unit/Fixture.html:183(span)
+#: doc/reference/en/Test/Unit/Fixture.html:181(span)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:459(span)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:506(span)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:548(span)
@@ -7653,16 +7645,16 @@ msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:642(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:670(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:700(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:728(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:758(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:786(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:814(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:842(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:870(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:898(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:926(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:954(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:982(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:730(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:760(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:788(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:816(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:844(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:872(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:900(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:928(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:956(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:984(span)
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:238(span)
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:288(span)
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:327(span)
@@ -7712,113 +7704,114 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:2035(span)
#: doc/reference/en/Test/Unit/Assertions.html:2036(span)
#: doc/reference/en/Test/Unit/Assertions.html:2037(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2091(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2092(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2093(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2157(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2158(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2159(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2221(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2222(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2225(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2236(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2237(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2238(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2239(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2303(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2304(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2307(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2320(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2321(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2322(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2323(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2365(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2368(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2369(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2403(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2440(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2441(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2497(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2498(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2499(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2563(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2564(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2565(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2595(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2645(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2646(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2647(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2703(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2704(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2705(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2769(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2770(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2771(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2814(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2815(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2845(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2911(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2912(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2913(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2960(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2966(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2967(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3007(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3108(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3109(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3110(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3162(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3174(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3175(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3177(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3178(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3231(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3233(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3234(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3279(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3280(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3337(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3338(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3339(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3396(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3397(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3398(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3464(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3465(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3466(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3511(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3512(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3514(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3537(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3579(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3580(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3582(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3668(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3669(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3682(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3683(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3684(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3685(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3713(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3760(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3766(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3767(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3807(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3883(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3884(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3885(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3948(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3951(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3957(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3971(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3972(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3973(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4014(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4068(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4069(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4070(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4100(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4128(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2097(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2099(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2100(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2101(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2165(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2166(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2167(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2229(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2230(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2233(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2244(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2245(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2246(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2247(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2311(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2312(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2315(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2328(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2329(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2330(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2331(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2373(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2376(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2377(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2411(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2448(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2449(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2505(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2506(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2507(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2571(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2572(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2573(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2603(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2653(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2654(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2655(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2711(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2712(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2713(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2777(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2778(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2779(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2822(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2823(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2853(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2919(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2920(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2921(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2968(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2974(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2975(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3015(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3116(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3117(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3118(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3170(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3182(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3183(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3185(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3186(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3239(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3241(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3242(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3287(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3288(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3345(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3346(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3347(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3404(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3405(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3406(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3472(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3473(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3474(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3519(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3520(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3522(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3545(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3587(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3588(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3590(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3676(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3677(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3690(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3691(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3692(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3693(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3721(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3768(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3774(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3775(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3815(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3891(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3892(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3893(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3956(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3959(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3965(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3979(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3980(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3981(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4022(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4076(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4077(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4078(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4108(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4136(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:231(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:232(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:233(span)
@@ -7956,27 +7949,27 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1877(span)
#: doc/reference/en/Test/Unit/TestCase.html:1928(span)
#: doc/reference/en/Test/Unit/TestCase.html:1967(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2039(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2079(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2107(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2149(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2188(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2240(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2287(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2288(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2341(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2424(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2425(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2432(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2433(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2504(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2532(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2571(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2642(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2681(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2749(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2753(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2755(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2051(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2091(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2119(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2161(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2200(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2252(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2299(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2300(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2353(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2436(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2437(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2444(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2445(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2528(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2556(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2595(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2678(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2717(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2785(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2789(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2791(span)
#: doc/reference/en/Test/Unit/ErrorHandler.html:177(span)
#: doc/reference/en/Test/Unit/Data.html:159(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerUtilities.html:202(span)
@@ -8197,7 +8190,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestResult.html:1097(span)
#: doc/reference/en/Test/Unit/ExceptionHandler.html:233(span)
#: doc/reference/en/Test/Unit/TestSuiteCreator.html:267(span)
-#: doc/reference/en/Test/Unit/Fixture.html:176(span)
+#: doc/reference/en/Test/Unit/Fixture.html:175(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/MaybeContainer.html:241(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:674(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:744(span)
@@ -8215,14 +8208,15 @@ msgstr ""
#: doc/reference/en/Test/Unit/ColorScheme.html:629(span)
#: doc/reference/en/Test/Unit/Assertions.html:1331(span)
#: doc/reference/en/Test/Unit/Assertions.html:1849(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2219(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2234(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2301(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2318(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2363(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3160(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3172(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3680(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2095(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2227(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2242(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2309(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2326(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2371(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3168(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3180(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3688(span)
#: doc/reference/en/Test/Unit/Diff/ReadableDiffer.html:214(span)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:502(span)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:544(span)
@@ -8242,8 +8236,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Data/ClassMethods.html:265(span)
#: doc/reference/en/Test/Unit/Data/ClassMethods/CSVDataLoader.html:256(span)
#: doc/reference/en/Test/Unit/TestCase.html:1782(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2285(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2747(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2297(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2783(span)
#: doc/reference/en/Test/Unit/UI/TestRunner.html:258(span)
#: doc/reference/en/Test/Unit/Diff.html:277(span)
#: doc/reference/en/Test/Unit/Color.html:550(span)
@@ -8281,14 +8275,14 @@ msgstr ""
#: doc/reference/en/Test/Unit/Util/MethodOwnerFinder.html:170(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:671(span)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:414(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3536(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3544(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:386(span)
#: doc/reference/en/Test/Unit/Collector/XML.html:206(span)
#: doc/reference/en/Test/Unit/Collector/Load.html:579(span)
#: doc/reference/en/Test/Unit/Collector/Descendant.html:206(span)
#: doc/reference/en/Test/Unit/Collector/ObjectSpace.html:225(span)
#: doc/reference/en/Test/Unit/Collector/ObjectSpace.html:273(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2750(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2786(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerMediator.html:335(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerMediator.html:336(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerMediator.html:338(span)
@@ -8374,14 +8368,14 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:892(strong)
#: doc/reference/en/Test/Unit/TestCase.html:1490(span)
#: doc/reference/en/Test/Unit/TestCase.html:1493(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2148(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2249(strong)
-#: doc/reference/en/Test/Unit/TestCase.html:2282(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2284(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2286(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2409(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2428(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2680(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2160(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2261(strong)
+#: doc/reference/en/Test/Unit/TestCase.html:2294(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2296(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2298(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2421(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2440(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2716(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerMediator.html:119(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerMediator.html:124(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerMediator.html:129(span)
@@ -8438,20 +8432,20 @@ msgstr ""
#: doc/reference/en/Test/Unit/Attribute/StringifyKeyHash.html:277(span)
#: doc/reference/en/Test/Unit/Assertions.html:1334(span)
#: doc/reference/en/Test/Unit/Assertions.html:1435(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2314(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2964(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3224(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3764(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3963(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2322(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2972(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3232(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3772(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3971(span)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:542(span)
#: doc/reference/en/Test/Unit/MixColor.html:368(span)
#: doc/reference/en/Test/Unit/MixColor.html:396(span)
#: doc/reference/en/Test/Unit/TestCase.html:1924(span)
#: doc/reference/en/Test/Unit/TestCase.html:1927(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2284(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2286(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2751(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2296(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2298(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2787(span)
#: doc/reference/en/Test/Unit/Error.html:749(span)
#: doc/reference/en/Test/Unit/Color.html:620(span)
#: doc/reference/en/Test/Unit/Color.html:912(span)
@@ -8670,8 +8664,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Pending.html:689(span)
#: doc/reference/en/Test/Unit/Pending.html:690(span)
#: doc/reference/en/Test/Unit/Pending.html:729(span)
-#: doc/reference/en/Test/Unit/Fixture.html:175(span)
-#: doc/reference/en/Test/Unit/Fixture.html:177(span)
+#: doc/reference/en/Test/Unit/Fixture.html:174(span)
+#: doc/reference/en/Test/Unit/Fixture.html:176(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/MaybeContainer.html:240(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:375(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:671(span)
@@ -8769,104 +8763,104 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1921(span)
#: doc/reference/en/Test/Unit/Assertions.html:1982(span)
#: doc/reference/en/Test/Unit/Assertions.html:2024(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2078(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2150(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2152(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2211(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2215(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2216(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2082(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2158(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2160(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2219(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2223(span)
#: doc/reference/en/Test/Unit/Assertions.html:2224(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2293(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2297(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2298(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2232(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2301(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2305(span)
#: doc/reference/en/Test/Unit/Assertions.html:2306(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2309(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2310(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2311(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2358(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2314(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2317(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2318(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2319(span)
#: doc/reference/en/Test/Unit/Assertions.html:2366(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2398(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2434(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2437(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2438(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2493(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2519(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2522(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2557(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2559(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2592(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2593(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2633(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2689(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2762(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2764(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2805(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2808(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2809(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2811(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2842(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2843(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2904(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2905(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2952(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2955(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2956(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2962(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2374(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2406(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2442(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2445(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2446(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2501(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2527(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2530(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2565(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2567(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2600(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2601(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2641(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2697(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2770(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2772(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2813(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2816(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2817(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2819(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2850(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2851(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2912(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2913(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2960(span)
#: doc/reference/en/Test/Unit/Assertions.html:2963(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2999(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3086(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3087(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3089(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3090(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3161(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3170(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3218(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3220(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2964(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2970(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2971(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3007(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3094(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3095(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3097(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3098(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3169(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3178(span)
#: doc/reference/en/Test/Unit/Assertions.html:3226(span)
#: doc/reference/en/Test/Unit/Assertions.html:3228(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3232(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3269(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3271(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3300(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3301(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3302(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3333(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3359(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3360(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3361(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3392(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3457(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3458(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3507(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3574(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3575(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3603(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3604(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3605(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3606(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3658(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3659(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3675(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3676(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3752(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3755(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3756(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3762(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3236(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3240(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3277(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3279(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3308(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3309(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3310(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3341(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3367(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3368(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3369(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3400(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3465(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3466(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3515(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3582(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3583(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3611(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3612(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3613(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3614(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3666(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3667(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3683(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3684(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3760(span)
#: doc/reference/en/Test/Unit/Assertions.html:3763(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3799(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3861(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3862(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3864(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3865(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3941(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3947(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3764(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3770(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3771(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3807(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3869(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3870(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3872(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3873(span)
#: doc/reference/en/Test/Unit/Assertions.html:3949(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3959(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3965(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3955(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3957(span)
#: doc/reference/en/Test/Unit/Assertions.html:3967(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3968(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4065(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4126(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3973(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3975(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3976(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4073(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4134(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:215(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:216(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:223(span)
@@ -8900,9 +8894,9 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1771(span)
#: doc/reference/en/Test/Unit/TestCase.html:1775(span)
#: doc/reference/en/Test/Unit/TestCase.html:1778(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2106(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2284(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2286(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2118(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2296(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2298(span)
#: doc/reference/en/Test/Unit/ErrorHandler.html:97(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerUtilities.html:247(span)
#: doc/reference/en/Test/Unit/UI/XML/TestRunner.html:244(span)
@@ -9020,8 +9014,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestResult.html:1147(span)
#: doc/reference/en/Test/Unit/Pending.html:690(span)
#: doc/reference/en/Test/Unit/Pending.html:729(span)
-#: doc/reference/en/Test/Unit/Fixture.html:175(span)
-#: doc/reference/en/Test/Unit/Fixture.html:177(span)
+#: doc/reference/en/Test/Unit/Fixture.html:174(span)
+#: doc/reference/en/Test/Unit/Fixture.html:176(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/MaybeContainer.html:240(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:668(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:671(span)
@@ -9032,8 +9026,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1333(span)
#: doc/reference/en/Test/Unit/Assertions.html:1334(span)
#: doc/reference/en/Test/Unit/Assertions.html:1648(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2224(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2306(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2232(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2314(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:215(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:216(span)
#: doc/reference/en/Test/Unit/Diff/ReadableDiffer.html:215(span)
@@ -9046,8 +9040,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Data/ClassMethods.html:266(span)
#: doc/reference/en/Test/Unit/TestCase.html:1775(span)
#: doc/reference/en/Test/Unit/TestCase.html:1778(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2284(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2286(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2296(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2298(span)
#: doc/reference/en/Test/Unit/Error.html:710(span)
#: doc/reference/en/Test/Unit/Error.html:749(span)
#: doc/reference/en/Test/Unit/Error.html:788(span)
@@ -9071,8 +9065,8 @@ msgid "#{"
msgstr ""
#: doc/reference/en/Test/Unit/Util/Observable.html:115(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3000(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3800(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3008(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3808(span)
msgid "__id__"
msgstr ""
@@ -9092,8 +9086,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestResult.html:1148(span)
#: doc/reference/en/Test/Unit/Pending.html:690(span)
#: doc/reference/en/Test/Unit/Pending.html:729(span)
-#: doc/reference/en/Test/Unit/Fixture.html:175(span)
-#: doc/reference/en/Test/Unit/Fixture.html:177(span)
+#: doc/reference/en/Test/Unit/Fixture.html:174(span)
+#: doc/reference/en/Test/Unit/Fixture.html:176(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Inspector.html:346(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/MaybeContainer.html:240(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:255(span)
@@ -9128,35 +9122,35 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1856(span)
#: doc/reference/en/Test/Unit/Assertions.html:1885(span)
#: doc/reference/en/Test/Unit/Assertions.html:1886(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2218(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2224(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2233(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2300(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2306(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2317(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2367(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2402(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2521(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2524(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2594(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2813(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2844(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2965(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3006(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3104(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3171(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3272(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3278(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3603(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3604(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3605(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3606(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3765(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3806(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3879(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3944(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3961(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4127(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2226(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2232(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2241(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2308(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2314(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2325(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2375(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2410(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2529(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2532(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2602(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2821(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2852(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2973(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3014(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3112(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3179(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3280(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3286(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3611(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3612(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3613(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3614(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3773(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3814(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3887(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3952(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3969(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4135(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:208(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:215(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:216(span)
@@ -9197,8 +9191,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1778(span)
#: doc/reference/en/Test/Unit/TestCase.html:1781(span)
#: doc/reference/en/Test/Unit/TestCase.html:1784(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2284(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2286(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2296(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2298(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerUtilities.html:200(span)
#: doc/reference/en/Test/Unit/UI/TestRunner.html:255(span)
#: doc/reference/en/Test/Unit/UI/XML/TestRunner.html:240(span)
@@ -9384,7 +9378,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/Util/Observable.html:263(span)
#: doc/reference/en/Test/Unit/TestCaseNotificationSupport.html:243(span)
#: doc/reference/en/Test/Unit/ExceptionHandler.html:237(span)
-#: doc/reference/en/Test/Unit/Fixture.html:181(span)
+#: doc/reference/en/Test/Unit/Fixture.html:179(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/MaybeContainer.html:192(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:381(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:382(span)
@@ -9396,16 +9390,22 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCasePendingSupport.html:258(span)
#: doc/reference/en/Test/Unit/ColorScheme.html:868(span)
#: doc/reference/en/Test/Unit/ColorScheme.html:869(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3218(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3502(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3513(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3569(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3581(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3711(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3712(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3941(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4012(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4013(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:668(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:669(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:786(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:787(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:814(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:815(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3226(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3510(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3521(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3577(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3589(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3719(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3720(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3949(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4020(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4021(span)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:278(span)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:575(span)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:576(span)
@@ -9448,8 +9448,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCasePendingSupport.html:268(span)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:334(span)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:549(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3224(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3963(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3232(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3971(span)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:390(span)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:431(span)
#: doc/reference/en/Test/Unit/Collector.html:250(span)
@@ -9462,11 +9462,11 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1924(span)
#: doc/reference/en/Test/Unit/TestCase.html:1925(span)
#: doc/reference/en/Test/Unit/TestCase.html:1926(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2418(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2423(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2743(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2746(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2748(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2430(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2435(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2779(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2782(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2784(span)
#: doc/reference/en/Test/Unit/Priority.html:593(span)
#: doc/reference/en/Test/Unit/Priority.html:623(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:1855(span)
@@ -9477,8 +9477,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Util/Observable.html:264(span)
#: doc/reference/en/Test/Unit/TestCasePendingSupport.html:260(span)
#: doc/reference/en/Test/Unit/Assertions.html:1338(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3220(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3950(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3228(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3958(span)
#: doc/reference/en/Test/Unit/TestCaseOmissionSupport.html:296(span)
#: doc/reference/en/Test/Unit/TestCase.html:1768(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:953(span)
@@ -9491,21 +9491,21 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1335(span)
#: doc/reference/en/Test/Unit/Assertions.html:1509(span)
#: doc/reference/en/Test/Unit/Assertions.html:1863(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3173(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3224(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3536(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3603(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3604(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3605(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3963(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3181(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3232(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3544(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3611(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3612(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3613(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3971(span)
#: doc/reference/en/Test/Unit/Diff/ReadableDiffer.html:215(span)
#: doc/reference/en/Test/Unit/TestCaseOmissionSupport.html:300(span)
#: doc/reference/en/Test/Unit/Data/ClassMethods.html:213(span)
#: doc/reference/en/Test/Unit/Data/ClassMethods.html:266(span)
#: doc/reference/en/Test/Unit/TestCase.html:1771(span)
#: doc/reference/en/Test/Unit/TestCase.html:1776(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2418(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2423(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2430(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2435(span)
#: doc/reference/en/Test/Unit/Color.html:553(span)
#: doc/reference/en/Test/Unit/Priority/ClassMethods.html:148(span)
msgid "raise"
@@ -9516,8 +9516,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:948(span)
#: doc/reference/en/Test/Unit/Assertions.html:137(span)
#: doc/reference/en/Test/Unit/Assertions.html:1335(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3223(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3962(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3231(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3970(span)
#: doc/reference/en/Test/Unit/Data/ClassMethods.html:213(span)
#: doc/reference/en/Test/Unit/Data/ClassMethods.html:266(span)
#: doc/reference/en/Test/Unit/TestCase.html:1771(span)
@@ -9534,7 +9534,6 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCaseNotificationSupport.html:245(span)
#: doc/reference/en/Test/Unit/ExceptionHandler.html:230(span)
#: doc/reference/en/Test/Unit/TestSuiteCreator.html:255(span)
-#: doc/reference/en/Test/Unit/Fixture.html:173(span)
#: doc/reference/en/Test/Unit/Attribute.html:275(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Inspector.html:434(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:339(span)
@@ -9603,11 +9602,11 @@ msgstr ""
#: doc/reference/en/Test/Unit/ColorScheme.html:779(span)
#: doc/reference/en/Test/Unit/Assertions.html:1429(span)
#: doc/reference/en/Test/Unit/Assertions.html:1509(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2362(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3164(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3503(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3570(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4099(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2370(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3172(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3511(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3578(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4107(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:209(span)
#: doc/reference/en/Test/Unit/TestCaseOmissionSupport.html:297(span)
#: doc/reference/en/Test/Unit/TestCaseOmissionSupport.html:300(span)
@@ -9730,7 +9729,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/ExceptionHandler.html:234(span)
#: doc/reference/en/Test/Unit/TestSuiteCreator.html:257(span)
#: doc/reference/en/Test/Unit/Pending.html:729(span)
-#: doc/reference/en/Test/Unit/Fixture.html:172(span)
+#: doc/reference/en/Test/Unit/Fixture.html:171(span)
#: doc/reference/en/Test/Unit/Attribute.html:247(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Inspector.html:349(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Inspector.html:433(span)
@@ -9773,24 +9772,24 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1636(span)
#: doc/reference/en/Test/Unit/Assertions.html:1738(span)
#: doc/reference/en/Test/Unit/Assertions.html:1741(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2113(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2115(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2520(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2523(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2725(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2727(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2865(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2866(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3036(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3037(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3224(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3418(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3419(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3510(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3944(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3963(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3965(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2121(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2123(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2528(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2531(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2733(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2735(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2873(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2874(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3044(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3045(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3232(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3426(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3427(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3518(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3952(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3971(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3973(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:210(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:211(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:213(span)
@@ -9890,8 +9889,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1407(span)
#: doc/reference/en/Test/Unit/TestCase.html:1825(span)
#: doc/reference/en/Test/Unit/TestCase.html:1876(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2148(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2284(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2160(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2296(span)
#: doc/reference/en/Test/Unit/ErrorHandler.html:92(span)
#: doc/reference/en/Test/Unit/ErrorHandler.html:97(span)
#: doc/reference/en/Test/Unit/ErrorHandler.html:102(span)
@@ -9995,7 +9994,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/ExceptionHandler.html:234(span)
#: doc/reference/en/Test/Unit/TestSuiteCreator.html:257(span)
#: doc/reference/en/Test/Unit/Pending.html:729(span)
-#: doc/reference/en/Test/Unit/Fixture.html:172(span)
+#: doc/reference/en/Test/Unit/Fixture.html:171(span)
#: doc/reference/en/Test/Unit/Attribute.html:247(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Inspector.html:349(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Inspector.html:433(span)
@@ -10038,24 +10037,24 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1636(span)
#: doc/reference/en/Test/Unit/Assertions.html:1738(span)
#: doc/reference/en/Test/Unit/Assertions.html:1741(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2113(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2115(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2520(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2523(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2725(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2727(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2865(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2866(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3036(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3037(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3224(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3418(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3419(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3510(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3944(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3963(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3965(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2121(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2123(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2528(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2531(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2733(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2735(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2873(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2874(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3044(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3045(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3232(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3426(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3427(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3518(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3952(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3971(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3973(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:210(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:211(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:213(span)
@@ -10154,7 +10153,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1407(span)
#: doc/reference/en/Test/Unit/TestCase.html:1825(span)
#: doc/reference/en/Test/Unit/TestCase.html:1876(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2148(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2160(span)
#: doc/reference/en/Test/Unit/ErrorHandler.html:92(span)
#: doc/reference/en/Test/Unit/ErrorHandler.html:97(span)
#: doc/reference/en/Test/Unit/ErrorHandler.html:103(span)
@@ -10289,33 +10288,33 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1856(span)
#: doc/reference/en/Test/Unit/Assertions.html:1885(span)
#: doc/reference/en/Test/Unit/Assertions.html:1886(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2218(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2233(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2300(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2317(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2367(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2402(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2521(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2524(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2594(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2813(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2844(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2965(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3006(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3104(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3171(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3272(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3278(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3603(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3604(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3605(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3606(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3765(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3806(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3879(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3944(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3961(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4127(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2226(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2241(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2308(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2325(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2375(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2410(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2529(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2532(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2602(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2821(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2852(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2973(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3014(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3112(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3179(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3280(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3286(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3611(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3612(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3613(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3614(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3773(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3814(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3887(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3952(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3969(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4135(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:208(span)
#: doc/reference/en/Test/Unit/Diff/ReadableDiffer.html:202(span)
#: doc/reference/en/Test/Unit/Collector.html:248(span)
@@ -10421,34 +10420,34 @@ msgstr ""
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:333(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:668(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:669(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:784(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:785(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:812(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:813(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:840(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:841(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:896(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:897(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:952(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:953(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2089(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2701(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3096(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3106(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3156(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3502(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3503(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3513(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3569(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3570(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3581(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3711(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3712(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3871(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3881(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4012(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4013(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4097(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:786(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:787(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:814(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:815(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:842(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:843(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:898(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:899(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:954(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:955(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2096(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2709(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3104(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3114(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3164(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3510(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3511(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3521(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3577(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3578(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3589(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3719(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3720(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3879(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3889(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4020(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4021(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4105(span)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:373(span)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:434(span)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:436(span)
@@ -10481,14 +10480,14 @@ msgstr ""
#: doc/reference/en/Test/Unit/Util/Observable.html:325(span)
#: doc/reference/en/Test/Unit/Util/Observable.html:329(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3096(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3103(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3106(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3871(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3878(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3881(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4097(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4099(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3104(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3111(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3114(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3879(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3886(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3889(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4105(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4107(span)
#: doc/reference/en/Test/Unit/Data/ClassMethods.html:202(span)
#: doc/reference/en/Test/Unit/Data/ClassMethods.html:203(span)
#: doc/reference/en/Test/Unit/Data/ClassMethods.html:208(span)
@@ -10523,15 +10522,15 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestResult.html:1102(span)
#: doc/reference/en/Test/Unit/Pending.html:729(span)
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:339(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3965(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3973(span)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:370(span)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:540(span)
#: doc/reference/en/Test/Unit/Collector/XML/Listener.html:573(span)
#: doc/reference/en/Test/Unit/Data/ClassMethods.html:205(span)
#: doc/reference/en/Test/Unit/Data/ClassMethods.html:208(span)
#: doc/reference/en/Test/Unit/Data/ClassMethods.html:210(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2748(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2784(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerUtilities.html:250(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerUtilities.html:251(span)
#: doc/reference/en/Test/Unit/UI/XML/TestRunner.html:247(span)
@@ -10577,7 +10576,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestSuiteCreator.html:256(span)
#: doc/reference/en/Test/Unit/TestSuiteCreator.html:259(span)
#: doc/reference/en/Test/Unit/TestSuiteCreator.html:261(span)
-#: doc/reference/en/Test/Unit/Fixture.html:172(span)
+#: doc/reference/en/Test/Unit/Fixture.html:171(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:141(strong)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:364(strong)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:381(span)
@@ -10637,8 +10636,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:637(span)
#: doc/reference/en/Test/Unit/Assertions.html:1439(span)
#: doc/reference/en/Test/Unit/Assertions.html:1447(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3222(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3955(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3230(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3963(span)
#: doc/reference/en/Test/Unit/TestCaseOmissionSupport.html:364(span)
#: doc/reference/en/Test/Unit/TestCaseOmissionSupport.html:426(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2343(span)
@@ -10663,8 +10662,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:338(span)
#: doc/reference/en/Test/Unit/TestResultPendingSupport.html:305(span)
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:326(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3088(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3863(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3096(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3871(span)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:322(strong)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:586(strong)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:603(span)
@@ -10674,8 +10673,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Data/ClassMethods.html:203(span)
#: doc/reference/en/Test/Unit/TestCase.html:986(strong)
#: doc/reference/en/Test/Unit/TestCase.html:1773(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2513(strong)
-#: doc/reference/en/Test/Unit/TestCase.html:2530(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2537(strong)
+#: doc/reference/en/Test/Unit/TestCase.html:2554(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerMediator.html:350(span)
#: doc/reference/en/Test/Unit/TestResultFailureSupport.html:326(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:1914(span)
@@ -10736,27 +10735,27 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1918(span)
#: doc/reference/en/Test/Unit/Assertions.html:1952(span)
#: doc/reference/en/Test/Unit/Assertions.html:1979(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2147(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2213(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2295(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2490(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2520(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2554(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2759(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2899(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3083(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3097(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3176(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3271(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3330(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3389(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3452(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3655(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3661(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3858(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3872(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4062(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4097(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2155(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2221(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2303(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2498(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2528(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2562(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2767(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2907(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3091(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3105(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3184(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3279(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3338(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3397(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3460(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3663(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3669(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3866(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3880(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4070(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4105(span)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:367(span)
#: doc/reference/en/Test/Unit/TestCaseOmissionSupport.html:294(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:386(span)
@@ -10765,7 +10764,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/Data/ClassMethods/CSVDataLoader.html:245(span)
#: doc/reference/en/Test/Unit/Data/ClassMethods/CSVDataLoader.html:251(span)
#: doc/reference/en/Test/Unit/TestCase.html:1406(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2056(tt)
+#: doc/reference/en/Test/Unit/TestCase.html:2068(tt)
#: doc/reference/en/Test/Unit/UI/XML/TestRunner.html:249(span)
#: doc/reference/en/Test/Unit/UI/XML/TestRunner.html:250(span)
#: doc/reference/en/Test/Unit/AssertionFailedError.html:327(span)
@@ -10780,20 +10779,19 @@ msgid "nil"
msgstr ""
#: doc/reference/en/Test/Unit/Util/Observable.html:382(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2233(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2235(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3168(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2241(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2243(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3176(span)
msgid "instance_of?"
msgstr ""
#: doc/reference/en/Test/Unit/Util/Observable.html:382(span)
#: doc/reference/en/Test/Unit/ExceptionHandler.html:230(span)
-#: doc/reference/en/Test/Unit/Fixture.html:173(span)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:586(span)
#: doc/reference/en/Test/Unit/Assertions.html:1328(span)
#: doc/reference/en/Test/Unit/Assertions.html:1429(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3503(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3570(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3511(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3578(span)
#: doc/reference/en/Test/Unit/Collector.html:284(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:1620(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:1649(span)
@@ -11117,19 +11115,19 @@ msgstr ""
#: doc/reference/en/Test/Unit/MixColor.html:404(p)
#: doc/reference/en/Test/Unit/MixColor.html:432(p)
#: doc/reference/en/Test/Unit/TestCase.html:1974(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2046(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2086(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2114(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2156(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2195(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2247(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2295(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2440(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2511(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2539(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2578(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2649(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2688(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2058(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2098(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2126(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2168(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2207(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2259(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2307(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2452(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2535(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2563(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2602(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2685(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2724(p)
#: doc/reference/en/Test/Unit/UI/TestRunnerUtilities.html:209(p)
#: doc/reference/en/Test/Unit/UI/TestRunner.html:324(p)
#: doc/reference/en/Test/Unit/UI/Tap/TestRunner.html:262(p)
@@ -11198,18 +11196,18 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1735(p)
#: doc/reference/en/Test/Unit/Assertions.html:1883(p)
#: doc/reference/en/Test/Unit/Assertions.html:1949(p)
-#: doc/reference/en/Test/Unit/Assertions.html:2111(p)
-#: doc/reference/en/Test/Unit/Assertions.html:2459(p)
-#: doc/reference/en/Test/Unit/Assertions.html:2517(p)
-#: doc/reference/en/Test/Unit/Assertions.html:2723(p)
-#: doc/reference/en/Test/Unit/Assertions.html:2863(p)
-#: doc/reference/en/Test/Unit/Assertions.html:3034(p)
-#: doc/reference/en/Test/Unit/Assertions.html:3298(p)
-#: doc/reference/en/Test/Unit/Assertions.html:3357(p)
-#: doc/reference/en/Test/Unit/Assertions.html:3416(p)
-#: doc/reference/en/Test/Unit/Assertions.html:3533(p)
-#: doc/reference/en/Test/Unit/Assertions.html:3601(p)
-#: doc/reference/en/Test/Unit/Assertions.html:4032(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2119(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2467(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2525(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2731(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2871(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3042(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3306(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3365(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3424(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3541(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3609(p)
+#: doc/reference/en/Test/Unit/Assertions.html:4040(p)
#: doc/reference/en/Test/Unit/TestCaseOmissionSupport.html:255(p)
#: doc/reference/en/Test/Unit/TestCaseOmissionSupport.html:320(p)
#: doc/reference/en/Test/Unit/TestCaseOmissionSupport.html:384(p)
@@ -11358,10 +11356,10 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:284(span)
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:285(span)
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:286(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3223(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3224(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3962(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3963(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3231(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3232(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3970(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3971(span)
msgid "error"
msgstr ""
@@ -11397,14 +11395,14 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1448(span)
#: doc/reference/en/Test/Unit/Assertions.html:1855(span)
#: doc/reference/en/Test/Unit/Assertions.html:1923(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3165(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3221(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3663(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3943(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3953(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2406(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2411(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2420(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3173(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3229(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3671(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3951(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3961(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2418(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2423(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2432(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerMediator.html:349(span)
#: doc/reference/en/Test/Unit/Diff.html:272(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2439(span)
@@ -11416,12 +11414,12 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCasePendingSupport.html:263(span)
#: doc/reference/en/Test/Unit/Assertions.html:1508(span)
#: doc/reference/en/Test/Unit/Assertions.html:1924(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3166(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3664(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2409(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2410(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2428(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2429(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3174(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3672(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2421(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2422(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2440(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2441(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:953(span)
msgid "yield"
msgstr ""
@@ -11440,14 +11438,14 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:876(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1091(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1092(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2358(span)
#: doc/reference/en/Test/Unit/Assertions.html:2366(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2367(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2434(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2439(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2805(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2812(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2374(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2375(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2442(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2447(span)
#: doc/reference/en/Test/Unit/Assertions.html:2813(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2820(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2821(span)
#: doc/reference/en/Test/Unit/TestCaseOmissionSupport.html:387(span)
#: doc/reference/en/Test/Unit/Diff.html:308(span)
#: doc/reference/en/Test/Unit/Diff.html:309(span)
@@ -11460,8 +11458,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Util/Output.html:188(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:593(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:639(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2419(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2430(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2431(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2442(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerMediator.html:356(span)
msgid "ensure"
msgstr ""
@@ -11582,12 +11580,12 @@ msgstr ""
#: doc/reference/en/Test/Unit/Util/BacktraceFilter.html:97(span)
#: doc/reference/en/Test/Unit/Util/BacktraceFilter.html:218(span)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:413(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2114(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2116(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2726(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2728(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3965(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2122(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2124(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2734(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2736(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3973(span)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:115(span)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:116(span)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:117(span)
@@ -11663,11 +11661,11 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:902(span)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:413(span)
#: doc/reference/en/Test/Unit/Assertions.html:2034(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2090(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2644(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2702(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3965(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2098(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2652(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2710(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3973(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:223(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:226(span)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:377(span)
@@ -11800,6 +11798,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/Util/BacktraceFilter.html:215(span)
#: doc/reference/en/Test/Unit/Util/BacktraceFilter.html:222(span)
+#: doc/reference/en/Test/Unit/Fixture.html:172(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2239(span)
msgid "lambda"
msgstr ""
@@ -11818,9 +11817,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Util/BacktraceFilter.html:216(span)
#: doc/reference/en/Test/Unit/Util/BacktraceFilter.html:217(span)
-#, fuzzy
msgid "components"
-msgstr "²þÎÉ"
+msgstr ""
#: doc/reference/en/Test/Unit/Util/BacktraceFilter.html:217(span)
#: doc/reference/en/Test/Unit/Util/BacktraceFilter.html:218(span)
@@ -11871,10 +11869,10 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1925(span)
#: doc/reference/en/Test/Unit/Assertions.html:1951(span)
#: doc/reference/en/Test/Unit/Assertions.html:1984(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3171(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3665(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3956(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4127(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3179(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3673(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3964(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4135(span)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:433(span)
#: doc/reference/en/Test/Unit/TestCaseOmissionSupport.html:331(span)
#: doc/reference/en/Test/Unit/TestCaseOmissionSupport.html:395(span)
@@ -11882,10 +11880,10 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1924(span)
#: doc/reference/en/Test/Unit/TestCase.html:1925(span)
#: doc/reference/en/Test/Unit/TestCase.html:1926(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2743(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2746(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2748(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2752(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2779(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2782(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2784(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2788(span)
#: doc/reference/en/Test/Unit/UI/XML/TestRunner.html:246(span)
#: doc/reference/en/Test/Unit/UI/XML/TestRunner.html:251(span)
#: doc/reference/en/Test/Unit/UI/Console/TestRunner.html:280(span)
@@ -11912,11 +11910,12 @@ msgstr ""
#: doc/reference/en/Test/Unit/Util/BacktraceFilter.html:218(span)
#: doc/reference/en/Test/Unit/Assertions.html:1742(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2521(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3036(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3037(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3088(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3863(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2094(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2529(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3044(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3045(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3096(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3871(span)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:373(span)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:543(span)
#: doc/reference/en/Test/Unit/Data/ClassMethods.html:209(span)
@@ -11938,21 +11937,21 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1589(span)
#: doc/reference/en/Test/Unit/Assertions.html:1590(span)
#: doc/reference/en/Test/Unit/Assertions.html:1742(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2113(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2114(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2115(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2116(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2521(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2725(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2726(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2727(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2728(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2865(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3036(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3037(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3419(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3965(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2121(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2122(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2123(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2124(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2529(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2733(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2734(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2735(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2736(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2873(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3044(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3045(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3427(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3973(span)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:541(span)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:545(span)
#: doc/reference/en/Test/Unit/Collector/XML/Listener.html:476(span)
@@ -11961,8 +11960,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Data/ClassMethods.html:207(span)
#: doc/reference/en/Test/Unit/Data/ClassMethods.html:210(span)
#: doc/reference/en/Test/Unit/TestCase.html:1774(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2531(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2746(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2555(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2782(span)
#: doc/reference/en/Test/Unit/UI/Console/OutputLevel.html:97(span)
#: doc/reference/en/Test/Unit/Color.html:915(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:1913(span)
@@ -12059,15 +12058,15 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1532(span)
#: doc/reference/en/Test/Unit/Assertions.html:1565(span)
#: doc/reference/en/Test/Unit/Assertions.html:1927(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2642(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2698(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2861(em)
-#: doc/reference/en/Test/Unit/Assertions.html:3232(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3414(em)
-#: doc/reference/en/Test/Unit/Assertions.html:3667(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3952(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4034(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4067(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2650(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2706(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2869(em)
+#: doc/reference/en/Test/Unit/Assertions.html:3240(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3422(em)
+#: doc/reference/en/Test/Unit/Assertions.html:3675(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3960(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4042(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4075(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:214(span)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:435(span)
#: doc/reference/en/Test/Unit/TestCaseOmissionSupport.html:328(span)
@@ -12076,7 +12075,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/Collector.html:346(span)
#: doc/reference/en/Test/Unit/TestCase.html:1781(span)
#: doc/reference/en/Test/Unit/TestCase.html:1784(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2754(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2790(span)
#: doc/reference/en/Test/Unit/UI/XML/TestRunner.html:248(span)
#: doc/reference/en/Test/Unit/UI/Console/TestRunner.html:279(span)
#: doc/reference/en/Test/Unit/UI/Console/TestRunner.html:282(span)
@@ -12109,8 +12108,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:377(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1092(span)
#: doc/reference/en/Test/Unit/Assertions.html:1333(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3965(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3973(span)
#: doc/reference/en/Test/Unit/Collector/XML/Listener.html:484(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:775(span)
#: doc/reference/en/Test/Unit/Error.html:749(span)
@@ -12175,8 +12174,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:630(span)
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:376(span)
#: doc/reference/en/Test/Unit/Assertions.html:1780(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2562(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3168(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2570(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3176(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:210(span)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:370(span)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:390(span)
@@ -12206,9 +12205,9 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1047(span)
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:290(span)
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:291(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2959(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3510(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3759(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2967(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3518(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3767(span)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:459(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:781(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:1913(span)
@@ -12763,7 +12762,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/ColorScheme.html:769(span)
#: doc/reference/en/Test/Unit/Assertions.html:1327(span)
#: doc/reference/en/Test/Unit/Assertions.html:1637(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2360(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2368(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:221(span)
#: doc/reference/en/Test/Unit/Diff/ReadableDiffer.html:205(span)
#: doc/reference/en/Test/Unit/Collector.html:283(span)
@@ -12788,7 +12787,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1640(span)
#: doc/reference/en/Test/Unit/Assertions.html:1642(span)
#: doc/reference/en/Test/Unit/Assertions.html:1644(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2361(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2369(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:222(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:225(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:227(span)
@@ -12850,6 +12849,7 @@ msgid "# File 'lib/test/unit/util/procwrapper.rb', line 28"
msgstr ""
#: doc/reference/en/Test/Unit/Util/ProcWrapper.html:347(pre)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:944(pre)
#: doc/reference/en/Test/Unit/Color.html:791(pre)
msgid "42 43 44"
msgstr ""
@@ -12990,7 +12990,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/ExceptionHandler.html:227(span)
#: doc/reference/en/Test/Unit/Fixture.html:110(strong)
#: doc/reference/en/Test/Unit/Fixture.html:140(strong)
-#: doc/reference/en/Test/Unit/Fixture.html:169(span)
+#: doc/reference/en/Test/Unit/Fixture.html:168(span)
#: doc/reference/en/Test/Unit/Attribute.html:112(strong)
#: doc/reference/en/Test/Unit/Attribute.html:193(strong)
#: doc/reference/en/Test/Unit/Attribute.html:211(span)
@@ -13139,9 +13139,9 @@ msgstr ""
#: doc/reference/en/Test/Unit/ExceptionHandler.html:227(span)
#: doc/reference/en/Test/Unit/ExceptionHandler.html:228(span)
#: doc/reference/en/Test/Unit/ExceptionHandler.html:237(span)
+#: doc/reference/en/Test/Unit/Fixture.html:168(span)
#: doc/reference/en/Test/Unit/Fixture.html:169(span)
-#: doc/reference/en/Test/Unit/Fixture.html:170(span)
-#: doc/reference/en/Test/Unit/Fixture.html:181(span)
+#: doc/reference/en/Test/Unit/Fixture.html:179(span)
#: doc/reference/en/Test/Unit/Attribute.html:211(span)
#: doc/reference/en/Test/Unit/Attribute.html:212(span)
#: doc/reference/en/Test/Unit/Attribute.html:213(span)
@@ -13295,84 +13295,84 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1981(span)
#: doc/reference/en/Test/Unit/Assertions.html:2024(span)
#: doc/reference/en/Test/Unit/Assertions.html:2032(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2078(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2086(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2147(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2151(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2211(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2293(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2308(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2358(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2082(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2090(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2155(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2159(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2219(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2301(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2316(span)
#: doc/reference/en/Test/Unit/Assertions.html:2366(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2398(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2399(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2434(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2439(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2490(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2492(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2554(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2558(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2592(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2593(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2633(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2374(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2406(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2407(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2442(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2447(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2498(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2500(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2562(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2566(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2600(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2601(span)
#: doc/reference/en/Test/Unit/Assertions.html:2641(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2689(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2649(span)
#: doc/reference/en/Test/Unit/Assertions.html:2697(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2759(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2763(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2805(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2810(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2842(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2843(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2899(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2901(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2903(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2952(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2954(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2961(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2999(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3000(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3083(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3099(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3159(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3161(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3170(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3218(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3224(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3227(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3269(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3273(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3330(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3332(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3389(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3391(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3452(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3454(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3456(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3504(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3506(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3571(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3573(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3655(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3657(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3671(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3674(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3752(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3754(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3761(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3799(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3800(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3858(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3874(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3941(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3958(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3963(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2705(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2767(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2771(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2813(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2818(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2850(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2851(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2907(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2909(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2911(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2960(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2962(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2969(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3007(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3008(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3091(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3107(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3167(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3169(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3178(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3226(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3232(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3235(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3277(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3281(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3338(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3340(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3397(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3399(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3460(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3462(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3464(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3512(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3514(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3579(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3581(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3663(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3665(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3679(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3682(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3760(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3762(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3769(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3807(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3808(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3866(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3882(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3949(span)
#: doc/reference/en/Test/Unit/Assertions.html:3966(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4062(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4064(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4126(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4127(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3971(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3974(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4070(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4072(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4134(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4135(span)
#: doc/reference/en/Test/Unit/TestCaseOmissionSupport.html:294(span)
#: doc/reference/en/Test/Unit/TestCaseOmissionSupport.html:295(span)
#: doc/reference/en/Test/Unit/TestCaseOmissionSupport.html:297(span)
@@ -13418,11 +13418,11 @@ msgstr ""
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:336(span)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:339(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:697(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:698(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:726(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:699(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:727(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:755(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:756(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:729(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:757(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:759(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:208(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:213(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:215(span)
@@ -13477,14 +13477,14 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCasePendingSupport.html:258(span)
#: doc/reference/en/Test/Unit/ColorScheme.html:868(span)
#: doc/reference/en/Test/Unit/ColorScheme.html:869(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3502(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3513(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3569(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3581(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3711(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3712(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4012(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4013(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3510(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3521(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3577(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3589(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3719(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3720(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4020(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4021(span)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:575(span)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:576(span)
#: doc/reference/en/Test/Unit/TestCaseOmissionSupport.html:294(span)
@@ -13520,14 +13520,14 @@ msgstr ""
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:482(span)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:635(span)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:639(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3168(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3272(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3176(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3280(span)
#: doc/reference/en/Test/Unit/Collector.html:416(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:774(span)
#: doc/reference/en/Test/Unit/Data/ClassMethods.html:215(span)
#: doc/reference/en/Test/Unit/TestCase.html:1407(span)
#: doc/reference/en/Test/Unit/TestCase.html:1825(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2148(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2160(span)
#: doc/reference/en/Test/Unit/UI/TestRunner.html:262(span)
#: doc/reference/en/Test/Unit/UI/XML/TestRunner.html:242(span)
#: doc/reference/en/Test/Unit/UI/Console/TestRunner.html:269(span)
@@ -13701,30 +13701,30 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1979(span)
#: doc/reference/en/Test/Unit/Assertions.html:1983(span)
#: doc/reference/en/Test/Unit/Assertions.html:1984(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2592(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2593(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2594(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2902(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2908(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2600(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2601(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2602(span)
#: doc/reference/en/Test/Unit/Assertions.html:2910(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2999(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3000(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3006(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3455(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3461(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2916(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2918(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3007(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3008(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3014(span)
#: doc/reference/en/Test/Unit/Assertions.html:3463(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3671(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3672(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3676(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3469(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3471(span)
#: doc/reference/en/Test/Unit/Assertions.html:3679(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3681(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3799(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3800(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3806(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4030(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:4062(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4066(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4067(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3680(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3684(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3687(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3689(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3807(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3808(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3814(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4038(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:4070(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4074(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4075(span)
#: doc/reference/en/Test/Unit/AssertionFailedError.html:117(strong)
#: doc/reference/en/Test/Unit/AssertionFailedError.html:352(strong)
#: doc/reference/en/Test/Unit/AssertionFailedError.html:380(span)
@@ -13809,28 +13809,28 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1856(span)
#: doc/reference/en/Test/Unit/Assertions.html:1858(span)
#: doc/reference/en/Test/Unit/Assertions.html:1860(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2592(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2593(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2594(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2999(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3000(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3006(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3505(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3508(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3510(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3572(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3576(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3599(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3655(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3660(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3672(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3676(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3678(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3679(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3681(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3799(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3800(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3806(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2600(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2601(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2602(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3007(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3008(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3014(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3513(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3516(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3518(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3580(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3584(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3607(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:3663(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3668(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3680(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3684(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3686(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3687(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3689(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3807(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3808(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3814(span)
#: doc/reference/en/Test/Unit/AssertionFailedError.html:143(strong)
#: doc/reference/en/Test/Unit/AssertionFailedError.html:394(strong)
#: doc/reference/en/Test/Unit/AssertionFailedError.html:422(span)
@@ -14033,8 +14033,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1837(span)
#: doc/reference/en/Test/Unit/Assertions.html:1848(span)
#: doc/reference/en/Test/Unit/Assertions.html:1850(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3672(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3676(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3680(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3684(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:120(strong)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:166(strong)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:208(span)
@@ -14572,12 +14572,12 @@ msgstr ""
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:436(tt)
#: doc/reference/en/Test/Unit/Collector.html:298(tt)
#: doc/reference/en/Test/Unit/Collector.html:316(tt)
-#: doc/reference/en/Test/Unit/TestCase.html:2197(tt)
-#: doc/reference/en/Test/Unit/TestCase.html:2217(tt)
-#: doc/reference/en/Test/Unit/TestCase.html:2297(tt)
-#: doc/reference/en/Test/Unit/TestCase.html:2318(tt)
-#: doc/reference/en/Test/Unit/TestCase.html:2690(tt)
-#: doc/reference/en/Test/Unit/TestCase.html:2710(tt)
+#: doc/reference/en/Test/Unit/TestCase.html:2209(tt)
+#: doc/reference/en/Test/Unit/TestCase.html:2229(tt)
+#: doc/reference/en/Test/Unit/TestCase.html:2309(tt)
+#: doc/reference/en/Test/Unit/TestCase.html:2330(tt)
+#: doc/reference/en/Test/Unit/TestCase.html:2726(tt)
+#: doc/reference/en/Test/Unit/TestCase.html:2746(tt)
#: doc/reference/en/Test/Unit/UI/Console/ColorizedReadableDiffer.html:244(tt)
#: doc/reference/en/Test/Unit/UI/Console/ColorizedReadableDiffer.html:262(tt)
#: doc/reference/en/Test/Unit/Diff.html:349(tt)
@@ -14638,9 +14638,9 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:348(h3)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:430(h3)
#: doc/reference/en/Test/Unit/Collector.html:310(h3)
-#: doc/reference/en/Test/Unit/TestCase.html:2211(h3)
-#: doc/reference/en/Test/Unit/TestCase.html:2312(h3)
-#: doc/reference/en/Test/Unit/TestCase.html:2704(h3)
+#: doc/reference/en/Test/Unit/TestCase.html:2223(h3)
+#: doc/reference/en/Test/Unit/TestCase.html:2324(h3)
+#: doc/reference/en/Test/Unit/TestCase.html:2740(h3)
#: doc/reference/en/Test/Unit/UI/Console/ColorizedReadableDiffer.html:256(h3)
#: doc/reference/en/Test/Unit/Diff.html:361(h3)
#: doc/reference/en/Test/Unit/Error.html:581(h3)
@@ -14693,6 +14693,7 @@ msgid "compute_diff"
msgstr ""
#: doc/reference/en/Test/Unit/Failure.html:1025(pre)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:804(pre)
#: doc/reference/en/Test/Unit/Color.html:741(pre)
msgid "38 39 40"
msgstr ""
@@ -14795,7 +14796,6 @@ msgid "#"
msgstr ""
#: doc/reference/en/Test/Unit/Failure.html:1113(pre)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:942(pre)
msgid "43 44 45"
msgstr ""
@@ -14804,6 +14804,7 @@ msgid "# File 'lib/test/unit/failure.rb', line 43"
msgstr ""
#: doc/reference/en/Test/Unit/Failure.html:1152(pre)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:832(pre)
msgid "34 35 36"
msgstr ""
@@ -15108,7 +15109,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/ExceptionHandler.html:88(a)
#: doc/reference/en/Test/Unit/ExceptionHandler.html:228(span)
#: doc/reference/en/Test/Unit/Fixture.html:88(a)
-#: doc/reference/en/Test/Unit/Fixture.html:170(span)
+#: doc/reference/en/Test/Unit/Fixture.html:169(span)
#: doc/reference/en/Test/Unit/Attribute.html:88(a)
#: doc/reference/en/Test/Unit/Attribute.html:213(span)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:39(span)
@@ -15137,12 +15138,6 @@ msgstr ""
#: doc/reference/en/Test/Unit/ExceptionHandler/ClassMethods.html:96(a)
#: doc/reference/en/Test/Unit/ExceptionHandler/ClassMethods.html:138(a)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:222(a)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:306(a)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:327(a)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:348(a)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:390(a)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:432(a)
msgid "- (Object) (*method_names)"
msgstr ""
@@ -15166,12 +15161,6 @@ msgstr ""
#: doc/reference/en/Test/Unit/ExceptionHandler/ClassMethods.html:166(p)
#: doc/reference/en/Test/Unit/ExceptionHandler/ClassMethods.html:222(p)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:649(p)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:765(p)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:793(p)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:821(p)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:877(p)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:933(p)
msgid "- ( ) (*method_names)"
msgstr ""
@@ -15193,16 +15182,10 @@ msgstr ""
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:341(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:668(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:669(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:784(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:785(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:812(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:813(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:840(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:841(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:896(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:897(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:952(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:953(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:786(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:787(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:814(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:815(span)
msgid "method_names"
msgstr ""
@@ -15394,26 +15377,26 @@ msgstr ""
#: doc/reference/en/Test/Unit/ColorScheme.html:778(span)
#: doc/reference/en/Test/Unit/Assertions.html:1431(span)
#: doc/reference/en/Test/Unit/Assertions.html:1457(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2215(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2297(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2309(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2310(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2437(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2808(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2904(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2955(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2962(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3086(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3089(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3457(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3574(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3658(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3675(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3755(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3762(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3861(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3864(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3967(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2223(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2305(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2317(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2318(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2445(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2816(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2912(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2963(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2970(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3094(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3097(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3465(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3582(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3666(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3683(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3763(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3770(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3869(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3872(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3975(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:224(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:228(span)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:380(span)
@@ -15587,14 +15570,14 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestResult.html:364(strong)
#: doc/reference/en/Test/Unit/TestResult.html:886(strong)
#: doc/reference/en/Test/Unit/TestResult.html:903(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2415(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2427(span)
msgid "add_pass"
msgstr ""
#: doc/reference/en/Test/Unit/TestResult.html:385(strong)
#: doc/reference/en/Test/Unit/TestResult.html:914(strong)
#: doc/reference/en/Test/Unit/TestResult.html:944(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2427(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2439(span)
msgid "add_run"
msgstr ""
@@ -15626,9 +15609,9 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:806(strong)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:845(span)
#: doc/reference/en/Test/Unit/TestCase.html:916(strong)
-#: doc/reference/en/Test/Unit/TestCase.html:2297(strong)
-#: doc/reference/en/Test/Unit/TestCase.html:2339(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2340(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2309(strong)
+#: doc/reference/en/Test/Unit/TestCase.html:2351(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2352(span)
#: doc/reference/en/Test/Unit/UI/Tap/TestRunner.html:298(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2491(span)
#: doc/reference/en/Test/Unit/TestSuite.html:429(strong)
@@ -15867,7 +15850,6 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestResult.html:731(pre)
#: doc/reference/en/Test/Unit/TestResult.html:773(pre)
#: doc/reference/en/Test/Unit/TestResult.html:815(pre)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:802(pre)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:456(pre)
msgid "39 40 41"
msgstr ""
@@ -15933,7 +15915,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/ColorScheme.html:445(span)
#: doc/reference/en/Test/Unit/ColorScheme.html:514(span)
#: doc/reference/en/Test/Unit/Assertions.html:1269(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3164(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3172(span)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:542(span)
#: doc/reference/en/Test/Unit/MixColor.html:368(span)
#: doc/reference/en/Test/Unit/MixColor.html:396(span)
@@ -15944,13 +15926,13 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1876(span)
#: doc/reference/en/Test/Unit/TestCase.html:1924(span)
#: doc/reference/en/Test/Unit/TestCase.html:1927(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2148(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2284(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2286(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2410(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2429(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2750(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2751(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2160(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2296(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2298(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2422(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2441(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2786(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2787(span)
#: doc/reference/en/Test/Unit/Priority.html:594(span)
#: doc/reference/en/Test/Unit/Priority.html:624(span)
#: doc/reference/en/Test/Unit/Color.html:588(span)
@@ -15989,7 +15971,7 @@ msgid "# File 'lib/test/unit/testresult.rb', line 51"
msgstr ""
#: doc/reference/en/Test/Unit/TestResult.html:946(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2428(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2440(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerMediator.html:335(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerMediator.html:336(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerMediator.html:360(span)
@@ -16020,6 +16002,7 @@ msgid "omission_count"
msgstr ""
#: doc/reference/en/Test/Unit/TestResult.html:981(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2093(span)
msgid "zero?"
msgstr ""
@@ -16029,13 +16012,14 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestResult.html:984(span)
#: doc/reference/en/Test/Unit/Assertions.html:2034(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2088(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2089(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2090(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2644(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2700(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2701(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2702(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2092(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2094(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2096(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2098(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2652(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2708(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2709(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2710(span)
msgid "to_f"
msgstr ""
@@ -16048,8 +16032,8 @@ msgid "# File 'lib/test/unit/testresult.rb', line 101"
msgstr ""
#: doc/reference/en/Test/Unit/TestResult.html:1037(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2218(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2300(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2226(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2308(span)
msgid "all?"
msgstr ""
@@ -16061,11 +16045,11 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:718(span)
#: doc/reference/en/Test/Unit/TestResultErrorSupport.html:376(span)
#: doc/reference/en/Test/Unit/Assertions.html:107(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2562(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2768(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2910(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3107(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3395(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2570(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2776(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2918(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3115(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3403(span)
#: doc/reference/en/Test/Unit/TestResultFailureSupport.html:376(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2447(span)
msgid "not"
@@ -16073,8 +16057,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestResult.html:1037(span)
#: doc/reference/en/Test/Unit/TestResult.html:1148(span)
-#: doc/reference/en/Test/Unit/Fixture.html:175(span)
-#: doc/reference/en/Test/Unit/Fixture.html:177(span)
+#: doc/reference/en/Test/Unit/Fixture.html:174(span)
+#: doc/reference/en/Test/Unit/Fixture.html:176(span)
#: doc/reference/en/Test/Unit/Priority/Checker.html:660(span)
#: doc/reference/en/Test/Unit/Priority/Checker.html:1079(span)
msgid "send"
@@ -16103,10 +16087,10 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:668(span)
#: doc/reference/en/Test/Unit/Assertions.html:1636(span)
#: doc/reference/en/Test/Unit/Assertions.html:1642(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2224(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2306(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2644(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2702(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2232(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2314(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2652(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2710(span)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:377(span)
#: doc/reference/en/Test/Unit/Collector/Load.html:535(span)
#: doc/reference/en/Test/Unit/Collector/ObjectSpace.html:273(span)
@@ -16374,7 +16358,7 @@ msgid "# File 'lib/test/unit/exceptionhandler.rb', line 10"
msgstr ""
#: doc/reference/en/Test/Unit/ExceptionHandler.html:228(span)
-#: doc/reference/en/Test/Unit/Fixture.html:170(span)
+#: doc/reference/en/Test/Unit/Fixture.html:169(span)
#: doc/reference/en/Test/Unit/Attribute.html:212(span)
#: doc/reference/en/Test/Unit/Attribute.html:213(span)
#: doc/reference/en/Test/Unit/Data.html:158(span)
@@ -16384,8 +16368,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/ExceptionHandler.html:230(span)
#: doc/reference/en/Test/Unit/ExceptionHandler.html:237(span)
-#: doc/reference/en/Test/Unit/Fixture.html:173(span)
-#: doc/reference/en/Test/Unit/Fixture.html:181(span)
+#: doc/reference/en/Test/Unit/Fixture.html:172(span)
+#: doc/reference/en/Test/Unit/Fixture.html:179(span)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:586(span)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:588(span)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:636(span)
@@ -16396,9 +16380,9 @@ msgstr ""
#: doc/reference/en/Test/Unit/ExceptionHandler.html:230(span)
#: doc/reference/en/Test/Unit/TestSuiteCreator.html:202(span)
#: doc/reference/en/Test/Unit/TestSuiteCreator.html:203(span)
-#: doc/reference/en/Test/Unit/Fixture.html:173(span)
-#: doc/reference/en/Test/Unit/Fixture.html:175(span)
-#: doc/reference/en/Test/Unit/Fixture.html:177(span)
+#: doc/reference/en/Test/Unit/Fixture.html:172(span)
+#: doc/reference/en/Test/Unit/Fixture.html:174(span)
+#: doc/reference/en/Test/Unit/Fixture.html:176(span)
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:225(span)
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:226(span)
#: doc/reference/en/Test/Unit/Collector/Load.html:579(span)
@@ -16414,16 +16398,16 @@ msgid "test_case"
msgstr ""
#: doc/reference/en/Test/Unit/ExceptionHandler.html:230(span)
-#: doc/reference/en/Test/Unit/Fixture.html:173(span)
+#: doc/reference/en/Test/Unit/Fixture.html:172(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:1907(span)
msgid "_"
msgstr ""
#: doc/reference/en/Test/Unit/ExceptionHandler.html:230(span)
#: doc/reference/en/Test/Unit/ExceptionHandler.html:231(span)
+#: doc/reference/en/Test/Unit/Fixture.html:172(span)
#: doc/reference/en/Test/Unit/Fixture.html:173(span)
-#: doc/reference/en/Test/Unit/Fixture.html:174(span)
-#: doc/reference/en/Test/Unit/Fixture.html:178(span)
+#: doc/reference/en/Test/Unit/Fixture.html:176(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/DelayedLiteral.html:191(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/DelayedLiteral.html:192(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/MaybeContainer.html:192(span)
@@ -16449,10 +16433,10 @@ msgstr ""
#: doc/reference/en/Test/Unit/Attribute/StringifyKeyHash.html:277(span)
#: doc/reference/en/Test/Unit/Assertions.html:1269(span)
#: doc/reference/en/Test/Unit/Assertions.html:1270(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2223(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2224(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2305(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2306(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2231(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2232(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2313(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2314(span)
#: doc/reference/en/Test/Unit/TestCase.html:1406(span)
#: doc/reference/en/Test/Unit/TestCase.html:1407(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerMediator.html:353(span)
@@ -16482,7 +16466,7 @@ msgid "-="
msgstr ""
#: doc/reference/en/Test/Unit/ExceptionHandler.html:237(span)
-#: doc/reference/en/Test/Unit/Fixture.html:181(span)
+#: doc/reference/en/Test/Unit/Fixture.html:179(span)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:255(strong)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:568(strong)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:586(span)
@@ -16785,8 +16769,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestSuiteCreator.html:271(span)
#: doc/reference/en/Test/Unit/TestCase.html:776(strong)
-#: doc/reference/en/Test/Unit/TestCase.html:2088(strong)
-#: doc/reference/en/Test/Unit/TestCase.html:2105(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2100(strong)
+#: doc/reference/en/Test/Unit/TestCase.html:2117(span)
msgid "default_test"
msgstr ""
@@ -16924,6 +16908,7 @@ msgid "# File 'lib/test/unit/pending.rb', line 35"
msgstr ""
#: doc/reference/en/Test/Unit/Pending.html:718(pre)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:658(pre)
#: doc/reference/en/Test/Unit/Notification.html:718(pre)
#: doc/reference/en/Test/Unit/Omission.html:718(pre)
msgid "30 31 32"
@@ -16996,56 +16981,68 @@ msgid "lib/test/unit/fixture.rb"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture.html:147(pre)
-msgid "5 6 7 8 9 10 11 12 13 14 15 16 17 18 19"
+msgid "5 6 7 8 9 10 11 12 13 14 15 16 17 18"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture.html:167(span)
+#: doc/reference/en/Test/Unit/Fixture.html:166(span)
msgid "# File 'lib/test/unit/fixture.rb', line 5"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture.html:172(span)
+#: doc/reference/en/Test/Unit/Fixture.html:171(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:529(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:613(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:727(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:785(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:897(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:925(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:728(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:787(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:899(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:927(span)
msgid ":setup"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture.html:172(span)
+#: doc/reference/en/Test/Unit/Fixture.html:171(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:501(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:585(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:669(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:698(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:841(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:869(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:843(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:871(span)
msgid ":cleanup"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture.html:172(span)
+#: doc/reference/en/Test/Unit/Fixture.html:171(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:557(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:641(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:756(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:813(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:953(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:981(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:758(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:815(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:955(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:983(span)
msgid ":teardown"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture.html:172(span)
-#: doc/reference/en/Test/Unit/Fixture.html:175(span)
-#: doc/reference/en/Test/Unit/Fixture.html:177(span)
-#: doc/reference/en/Test/Unit/Fixture.html:181(span)
+#: doc/reference/en/Test/Unit/Fixture.html:171(span)
+#: doc/reference/en/Test/Unit/Fixture.html:174(span)
+#: doc/reference/en/Test/Unit/Fixture.html:176(span)
+#: doc/reference/en/Test/Unit/Fixture.html:179(span)
#: doc/reference/en/Test/Unit.html:185(em)
msgid "fixture"
msgstr ""
+#: doc/reference/en/Test/Unit/Fixture.html:172(span)
#: doc/reference/en/Test/Unit/Fixture.html:174(span)
+#: doc/reference/en/Test/Unit/Fixture.html:176(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:668(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:669(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:786(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:787(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:814(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:815(span)
+msgid "callback"
+msgstr ""
+
+#: doc/reference/en/Test/Unit/Fixture.html:173(span)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:718(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:738(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2402(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2844(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2410(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2852(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:214(span)
#: doc/reference/en/Test/Unit/Data/ClassMethods/CSVDataLoader.html:247(span)
#: doc/reference/en/Test/Unit/TestCase.html:1770(span)
@@ -17057,16 +17054,16 @@ msgstr ""
msgid "nil?"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture.html:175(span)
+#: doc/reference/en/Test/Unit/Fixture.html:174(span)
msgid "unregister_"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture.html:175(span)
-#: doc/reference/en/Test/Unit/Fixture.html:177(span)
-msgid "_method"
+#: doc/reference/en/Test/Unit/Fixture.html:174(span)
+#: doc/reference/en/Test/Unit/Fixture.html:176(span)
+msgid "_callback"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture.html:177(span)
+#: doc/reference/en/Test/Unit/Fixture.html:176(span)
msgid "register_"
msgstr ""
@@ -17117,9 +17114,9 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:476(strong)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:504(span)
#: doc/reference/en/Test/Unit/TestCase.html:820(strong)
-#: doc/reference/en/Test/Unit/TestCase.html:2158(strong)
-#: doc/reference/en/Test/Unit/TestCase.html:2186(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2187(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2170(strong)
+#: doc/reference/en/Test/Unit/TestCase.html:2198(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2199(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerMediator.html:357(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerMediator.html:363(span)
#: doc/reference/en/Test/Unit/TestSuite.html:146(strong)
@@ -17137,9 +17134,9 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:518(strong)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:546(span)
#: doc/reference/en/Test/Unit/TestCase.html:1007(strong)
-#: doc/reference/en/Test/Unit/TestCase.html:2541(strong)
-#: doc/reference/en/Test/Unit/TestCase.html:2569(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2570(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2565(strong)
+#: doc/reference/en/Test/Unit/TestCase.html:2593(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2594(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerMediator.html:348(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerMediator.html:357(span)
#: doc/reference/en/Test/Unit/TestSuite.html:225(strong)
@@ -17166,7 +17163,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:181(strong)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:602(strong)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:630(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2078(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2090(span)
msgid "test_data_label"
msgstr ""
@@ -17182,8 +17179,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:241(strong)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:678(strong)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:717(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2283(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2745(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2295(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2781(span)
msgid "have_test_data?"
msgstr ""
@@ -17198,7 +17195,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:287(strong)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:728(strong)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:745(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2417(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2429(span)
msgid "interrupted"
msgstr ""
@@ -17206,9 +17203,9 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:756(strong)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:795(span)
#: doc/reference/en/Test/Unit/TestCase.html:869(strong)
-#: doc/reference/en/Test/Unit/TestCase.html:2197(strong)
-#: doc/reference/en/Test/Unit/TestCase.html:2238(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2239(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2209(strong)
+#: doc/reference/en/Test/Unit/TestCase.html:2250(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2251(span)
msgid "interrupted?"
msgstr ""
@@ -17221,14 +17218,14 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:371(strong)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:884(strong)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:901(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2426(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2438(span)
msgid "test_finished"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:392(strong)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:912(strong)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:929(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2408(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2420(span)
msgid "test_started"
msgstr ""
@@ -17237,11 +17234,11 @@ msgid "A new instance of InternalData"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:437(pre)
-msgid "558 559 560 561 562 563 564 565"
+msgid "588 589 590 591 592 593 594 595"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:450(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 558"
+msgid "# File 'lib/test/unit/testcase.rb', line 588"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:453(span)
@@ -17294,12 +17291,12 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:494(pre)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:536(pre)
-msgid "556 557 558"
+msgid "586 587 588"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:502(span)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:544(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 556"
+msgid "# File 'lib/test/unit/testcase.rb', line 586"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:525(p)
@@ -17313,12 +17310,12 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:578(pre)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:620(pre)
-msgid "557 558 559"
+msgid "587 588 589"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:586(span)
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:628(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 557"
+msgid "# File 'lib/test/unit/testcase.rb', line 587"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:609(p)
@@ -17331,59 +17328,59 @@ msgid "- ( ) (label, data)"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:655(pre)
-msgid "575 576 577 578"
+msgid "605 606 607 608"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:664(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 575"
+msgid "# File 'lib/test/unit/testcase.rb', line 605"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:707(pre)
-msgid "580 581 582"
+msgid "610 611 612"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:715(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 580"
+msgid "# File 'lib/test/unit/testcase.rb', line 610"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:735(pre)
-msgid "596 597 598"
+msgid "626 627 628"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:743(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 596"
+msgid "# File 'lib/test/unit/testcase.rb', line 626"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:785(pre)
-msgid "571 572 573"
+msgid "601 602 603"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:793(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 571"
+msgid "# File 'lib/test/unit/testcase.rb', line 601"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:835(pre)
-msgid "567 568 569"
+msgid "597 598 599"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:843(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 567"
+msgid "# File 'lib/test/unit/testcase.rb', line 597"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:863(pre)
-msgid "592 593 594"
+msgid "622 623 624"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:871(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 592"
+msgid "# File 'lib/test/unit/testcase.rb', line 622"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:891(pre)
-msgid "588 589 590"
+msgid "618 619 620"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:899(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 588"
+msgid "# File 'lib/test/unit/testcase.rb', line 618"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:902(span)
@@ -17401,11 +17398,11 @@ msgid "now"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:919(pre)
-msgid "584 585 586"
+msgid "614 615 616"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase/InternalData.html:927(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 584"
+msgid "# File 'lib/test/unit/testcase.rb', line 614"
msgstr ""
#: doc/reference/en/Test/Unit/NotifiedError.html:6(title)
@@ -17577,11 +17574,11 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1266(span)
#: doc/reference/en/Test/Unit/TestCase.html:1314(span)
#: doc/reference/en/Test/Unit/TestCase.html:1925(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2284(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2286(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2743(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2744(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2750(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2296(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2298(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2779(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2780(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2786(span)
msgid "@method_name"
msgstr ""
@@ -17674,17 +17671,17 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1837(span)
#: doc/reference/en/Test/Unit/Assertions.html:1860(span)
#: doc/reference/en/Test/Unit/Assertions.html:1861(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2223(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2305(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2907(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3102(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3104(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3273(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3460(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3672(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3877(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3879(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4099(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2231(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2313(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2915(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3110(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3112(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3281(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3468(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3680(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3885(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3887(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4107(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2333(span)
#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:108(a)
msgid "AssertionMessage"
@@ -17811,11 +17808,11 @@ msgid "A new instance of Inspector"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Inspector.html:333(pre)
-msgid "1552 1553 1554 1555 1556 1557"
+msgid "1556 1557 1558 1559 1560 1561"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Inspector.html:344(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1552"
+msgid "# File 'lib/test/unit/assertions.rb', line 1556"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Inspector.html:346(span)
@@ -17864,11 +17861,11 @@ msgid "Returns the value of attribute object"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Inspector.html:386(pre)
-msgid "1551 1552 1553"
+msgid "1555 1556 1557"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Inspector.html:394(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1551"
+msgid "# File 'lib/test/unit/assertions.rb', line 1555"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Inspector.html:412(p)
@@ -17876,11 +17873,11 @@ msgid "+ ( ) (object, inspected_objects)"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Inspector.html:421(pre)
-msgid "1545 1546 1547 1548"
+msgid "1549 1550 1551 1552"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Inspector.html:430(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1545"
+msgid "# File 'lib/test/unit/assertions.rb', line 1549"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Inspector.html:443(div)
@@ -17888,16 +17885,16 @@ msgid ""
" \n"
" \n"
" \n"
-" =>-instance_method\"> - (Object) =(other) 1572 "
-"1573 1574 1575 1576 1577 1578 # File 'lib/test/unit/assertions.rb', line "
-"1572 def =(other) if other.is_a?(self.class) @object = other.object else "
-"@object = other end end - (Object) inspect 1560 1561 1562 # File 'lib/test/"
-"unit/assertions.rb', line 1560 def inspect @inspect_target.inspect end - "
-"(Object) native_inspect 1559 # File 'lib/test/unit/assertions.rb', line 1559 "
-"alias_method :native_inspect, :inspect - (Object) pretty_print(q) 1564 1565 "
-"1566 # File 'lib/test/unit/assertions.rb', line 1564 def pretty_print(q) "
-"@inspect_target.pretty_print(q) end - (Object) pretty_print_cycle(q) 1568 "
-"1569 1570 # File 'lib/test/unit/assertions.rb', line 1568 def "
+" =>-instance_method\"> - (Object) =(other) 1576 "
+"1577 1578 1579 1580 1581 1582 # File 'lib/test/unit/assertions.rb', line "
+"1576 def =(other) if other.is_a?(self.class) @object = other.object else "
+"@object = other end end - (Object) inspect 1564 1565 1566 # File 'lib/test/"
+"unit/assertions.rb', line 1564 def inspect @inspect_target.inspect end - "
+"(Object) native_inspect 1563 # File 'lib/test/unit/assertions.rb', line 1563 "
+"alias_method :native_inspect, :inspect - (Object) pretty_print(q) 1568 1569 "
+"1570 # File 'lib/test/unit/assertions.rb', line 1568 def pretty_print(q) "
+"@inspect_target.pretty_print(q) end - (Object) pretty_print_cycle(q) 1572 "
+"1573 1574 # File 'lib/test/unit/assertions.rb', line 1572 def "
"pretty_print_cycle(q) @inspect_target.pretty_print_cycle(q) end"
msgstr ""
@@ -17954,11 +17951,11 @@ msgid "A new instance of DelayedLiteral"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/DelayedLiteral.html:181(pre)
-msgid "1690 1691 1692"
+msgid "1694 1695 1696"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/DelayedLiteral.html:189(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1690"
+msgid "# File 'lib/test/unit/assertions.rb', line 1694"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/DelayedLiteral.html:192(span)
@@ -17973,11 +17970,11 @@ msgid "@value"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/DelayedLiteral.html:216(pre)
-msgid "1694 1695 1696"
+msgid "1698 1699 1700"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/DelayedLiteral.html:224(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1694"
+msgid "# File 'lib/test/unit/assertions.rb', line 1698"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/MaybeContainer.html:6(title)
@@ -18023,11 +18020,11 @@ msgid "A new instance of MaybeContainer"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/MaybeContainer.html:181(pre)
-msgid "1700 1701 1702 1703"
+msgid "1704 1705 1706 1707"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/MaybeContainer.html:190(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1700"
+msgid "# File 'lib/test/unit/assertions.rb', line 1704"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/MaybeContainer.html:192(span)
@@ -18044,11 +18041,11 @@ msgid "@formatter"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/MaybeContainer.html:218(pre)
-msgid "1705 1706 1707 1708 1709 1710 1711 1712 1713 1714"
+msgid "1709 1710 1711 1712 1713 1714 1715 1716 1717 1718"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/MaybeContainer.html:233(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1705"
+msgid "# File 'lib/test/unit/assertions.rb', line 1709"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/MaybeContainer.html:236(span)
@@ -18059,21 +18056,21 @@ msgstr ""
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:334(span)
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:414(span)
#: doc/reference/en/Test/Unit/ColorScheme.html:514(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2214(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2218(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2220(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2296(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3158(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3678(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2222(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2226(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2228(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2304(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3166(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3686(span)
msgid "is_a?"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/MaybeContainer.html:236(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:348(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2214(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2296(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3085(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3860(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2222(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2304(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3093(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3868(span)
#: doc/reference/en/Test/Unit/Collector.html:286(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2216(span)
msgid "Array"
@@ -18167,11 +18164,11 @@ msgid "A new instance of ArrayInspector"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:274(pre)
-msgid "1651 1652 1653 1654 1655 1656"
+msgid "1655 1656 1657 1658 1659 1660"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:285(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1651"
+msgid "# File 'lib/test/unit/assertions.rb', line 1655"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:287(span)
@@ -18199,11 +18196,11 @@ msgid "+ ( ) (object)"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:337(pre)
-msgid "1646 1647 1648"
+msgid "1650 1651 1652"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:345(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1646"
+msgid "# File 'lib/test/unit/assertions.rb', line 1650"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:362(p)
@@ -18213,19 +18210,19 @@ msgid "- ( ) (&block)"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:371(pre)
-msgid "1674 1675 1676"
+msgid "1678 1679 1680"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:379(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1674"
+msgid "# File 'lib/test/unit/assertions.rb', line 1678"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:399(pre)
-msgid "1658 1659 1660"
+msgid "1662 1663 1664"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:407(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1658"
+msgid "# File 'lib/test/unit/assertions.rb', line 1662"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:418(p)
@@ -18236,11 +18233,11 @@ msgid "- ( ) (q)"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:427(pre)
-msgid "1662 1663 1664 1665 1666 1667 1668"
+msgid "1666 1667 1668 1669 1670 1671 1672"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:439(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1662"
+msgid "# File 'lib/test/unit/assertions.rb', line 1666"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:441(span)
@@ -18300,11 +18297,11 @@ msgid "pp"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:463(pre)
-msgid "1670 1671 1672"
+msgid "1674 1675 1676"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/ArrayInspector.html:471(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1670"
+msgid "# File 'lib/test/unit/assertions.rb', line 1674"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Literal.html:6(title)
@@ -18349,19 +18346,19 @@ msgid "A new instance of Literal"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Literal.html:181(pre)
-msgid "1680 1681 1682"
+msgid "1684 1685 1686"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Literal.html:189(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1680"
+msgid "# File 'lib/test/unit/assertions.rb', line 1684"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Literal.html:216(pre)
-msgid "1684 1685 1686"
+msgid "1688 1689 1690"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Literal.html:224(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1684"
+msgid "# File 'lib/test/unit/assertions.rb', line 1688"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:6(title)
@@ -18418,14 +18415,14 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:355(strong)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:374(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1192(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3097(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3104(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3106(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3107(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3872(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3879(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3881(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3882(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3105(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3112(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3114(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3115(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3880(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3887(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3889(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3890(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:215(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:218(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:223(span)
@@ -18440,9 +18437,9 @@ msgstr ""
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:503(span)
#: doc/reference/en/Test/Unit/MixColor.html:454(span)
#: doc/reference/en/Test/Unit/MixColor.html:455(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2405(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2407(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2427(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2417(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2419(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2439(span)
#: doc/reference/en/Test/Unit/UI/Tap/TestRunner.html:297(span)
#: doc/reference/en/Test/Unit/UI/Tap/TestRunner.html:298(span)
#: doc/reference/en/Test/Unit/UI/Tap/TestRunner.html:301(span)
@@ -18477,11 +18474,11 @@ msgid "A new instance of Template"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:242(pre)
-msgid "1725 1726 1727 1728"
+msgid "1729 1730 1731 1732"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:251(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1725"
+msgid "# File 'lib/test/unit/assertions.rb', line 1729"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:253(span)
@@ -18510,10 +18507,10 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:255(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:377(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1192(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3167(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3168(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3169(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3170(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3175(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3176(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3177(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3178(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:773(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:774(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:775(span)
@@ -18533,11 +18530,11 @@ msgid "Returns the value of attribute count"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:291(pre)
-msgid "1723 1724 1725"
+msgid "1727 1728 1729"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:299(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1723"
+msgid "# File 'lib/test/unit/assertions.rb', line 1727"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:317(p)
@@ -18548,11 +18545,11 @@ msgid "+ ( ) (string)"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:326(pre)
-msgid "1718 1719 1720 1721"
+msgid "1722 1723 1724 1725"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:335(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1718"
+msgid "# File 'lib/test/unit/assertions.rb', line 1722"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:338(span)
@@ -18575,11 +18572,11 @@ msgid "- ( ) (parameters)"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:362(pre)
-msgid "1730 1731 1732 1733 1734"
+msgid "1734 1735 1736 1737 1738"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:372(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1730"
+msgid "# File 'lib/test/unit/assertions.rb', line 1734"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:374(span)
@@ -18596,8 +18593,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/Template.html:375(span)
#: doc/reference/en/Test/Unit/Assertions.html:1840(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2594(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2751(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2602(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2787(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2242(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2257(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2281(span)
@@ -18688,19 +18685,19 @@ msgid "A new instance of HashInspector"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/HashInspector.html:274(pre)
-msgid "1599 1600 1601 1602 1603 1604 1605 1606 1607"
+msgid "1603 1604 1605 1606 1607 1608 1609 1610 1611"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/HashInspector.html:288(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1599"
+msgid "# File 'lib/test/unit/assertions.rb', line 1603"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/HashInspector.html:343(pre)
-msgid "1594 1595 1596"
+msgid "1598 1599 1600"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/HashInspector.html:351(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1594"
+msgid "# File 'lib/test/unit/assertions.rb', line 1598"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/HashInspector.html:354(span)
@@ -18711,11 +18708,11 @@ msgid "Hash"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/HashInspector.html:377(pre)
-msgid "1632 1633 1634 1635 1636 1637 1638 1639 1640 1641"
+msgid "1636 1637 1638 1639 1640 1641 1642 1643 1644 1645"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/HashInspector.html:392(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1632"
+msgid "# File 'lib/test/unit/assertions.rb', line 1636"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/HashInspector.html:395(span)
@@ -18751,32 +18748,32 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1451(span)
#: doc/reference/en/Test/Unit/Assertions.html:1857(span)
#: doc/reference/en/Test/Unit/Assertions.html:1926(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3167(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3223(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3666(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3945(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3962(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2416(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2422(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3175(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3231(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3674(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3953(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3970(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2428(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2434(span)
#: doc/reference/en/Test/Unit/Diff.html:274(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2442(span)
msgid "rescue"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/HashInspector.html:419(pre)
-msgid "1609 1610 1611"
+msgid "1613 1614 1615"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/HashInspector.html:427(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1609"
+msgid "# File 'lib/test/unit/assertions.rb', line 1613"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/HashInspector.html:447(pre)
-msgid "1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626"
+msgid "1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/HashInspector.html:466(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1613"
+msgid "# File 'lib/test/unit/assertions.rb', line 1617"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/HashInspector.html:470(span)
@@ -18785,10 +18782,10 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/HashInspector.html:470(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/HashInspector.html:472(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2218(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2233(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2300(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2317(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2226(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2241(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2308(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2325(span)
msgid "k"
msgstr ""
@@ -18856,13 +18853,13 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:138(span)
#: doc/reference/en/Test/Unit/Assertions.html:1742(span)
#: doc/reference/en/Test/Unit/Assertions.html:1857(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2521(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2642(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2698(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3167(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3223(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3666(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3962(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2529(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2650(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2706(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3175(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3231(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3674(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3970(span)
#: doc/reference/en/Test/Unit/Collector/XML/Listener.html:113(span)
#: doc/reference/en/Test/Unit/Collector/XML/Listener.html:114(span)
#: doc/reference/en/Test/Unit/Collector/XML/Listener.html:125(span)
@@ -18896,11 +18893,11 @@ msgid "breakable"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/HashInspector.html:497(pre)
-msgid "1628 1629 1630"
+msgid "1632 1633 1634"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage/HashInspector.html:505(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1628"
+msgid "# File 'lib/test/unit/assertions.rb', line 1632"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:6(title)
@@ -18981,7 +18978,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:698(strong)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:734(span)
#: doc/reference/en/Test/Unit/Assertions.html:1837(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3672(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3680(span)
#: doc/reference/en/method_list.html:1148(a)
msgid "delayed_diff"
msgstr ""
@@ -18995,8 +18992,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:735(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:764(strong)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:781(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3104(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3879(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3112(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3887(span)
#: doc/reference/en/method_list.html:1156(a)
msgid "delayed_literal"
msgstr ""
@@ -19030,11 +19027,11 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:886(strong)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:903(span)
#: doc/reference/en/Test/Unit/Assertions.html:1434(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2907(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3102(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3273(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3460(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3877(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2915(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3110(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3281(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3468(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3885(span)
#: doc/reference/en/method_list.html:2244(a)
msgid "literal"
msgstr ""
@@ -19069,8 +19066,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:351(strong)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:990(strong)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1007(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2223(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2305(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2231(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2313(span)
#: doc/reference/en/method_list.html:2380(a)
msgid "maybe_container"
msgstr ""
@@ -19118,9 +19115,9 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1192(span)
#: doc/reference/en/Test/Unit/Assertions.html:1647(span)
#: doc/reference/en/Test/Unit/Assertions.html:1652(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4097(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4098(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4099(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4105(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4106(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4107(span)
msgid "template"
msgstr ""
@@ -19135,11 +19132,11 @@ msgid "A new instance of AssertionMessage"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:545(pre)
-msgid "1739 1740 1741 1742 1743"
+msgid "1743 1744 1745 1746 1747"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:555(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1739"
+msgid "# File 'lib/test/unit/assertions.rb', line 1743"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:557(span)
@@ -19147,8 +19144,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1187(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1188(span)
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1189(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4097(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4099(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4105(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4107(span)
msgid "head"
msgstr ""
@@ -19182,11 +19179,11 @@ msgid "Returns the value of attribute use_pp"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:596(pre)
-msgid "1425 1426 1427"
+msgid "1429 1430 1431"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:604(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1425"
+msgid "# File 'lib/test/unit/assertions.rb', line 1429"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:607(span)
@@ -19195,21 +19192,21 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:631(pre)
msgid ""
-"1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 "
-"1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538"
+"1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 "
+"1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:662(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1513"
+msgid "# File 'lib/test/unit/assertions.rb', line 1517"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:666(span)
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:332(span)
#: doc/reference/en/Test/Unit/TestCasePendingSupport.html:264(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3167(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3666(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2416(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2422(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3175(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3674(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2428(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2434(span)
msgid "Exception"
msgstr ""
@@ -19258,7 +19255,7 @@ msgid "PP"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:680(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4098(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4106(span)
msgid "chomp"
msgstr ""
@@ -19266,8 +19263,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:136(span)
#: doc/reference/en/Test/Unit/Assertions.html:1443(span)
#: doc/reference/en/Test/Unit/Assertions.html:1451(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3223(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3962(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3231(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3970(span)
msgid "NameError"
msgstr ""
@@ -19282,12 +19279,12 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:705(pre)
msgid ""
-"1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 "
-"1505 1506 1507 1508 1509 1510 1511"
+"1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 "
+"1509 1510 1511 1512 1513 1514 1515"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:732(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1490"
+msgid "# File 'lib/test/unit/assertions.rb', line 1494"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:734(span)
@@ -19383,7 +19380,7 @@ msgid "^[-+]"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:740(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2813(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2821(span)
msgid "!~"
msgstr ""
@@ -19427,19 +19424,19 @@ msgid "+ ( ) (&block)"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:771(pre)
-msgid "1431 1432 1433"
+msgid "1435 1436 1437"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:779(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1431"
+msgid "# File 'lib/test/unit/assertions.rb', line 1435"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:821(pre)
-msgid "1459 1460 1461 1462 1463 1464 1465"
+msgid "1463 1464 1465 1466 1467 1468 1469"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:833(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1459"
+msgid "# File 'lib/test/unit/assertions.rb', line 1463"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:836(span)
@@ -19457,8 +19454,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1589(span)
#: doc/reference/en/Test/Unit/Assertions.html:1636(span)
#: doc/reference/en/Test/Unit/Assertions.html:1638(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2224(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2306(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2232(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2314(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:675(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:1857(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:1914(span)
@@ -19467,11 +19464,11 @@ msgid "<"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:857(pre)
-msgid "1467 1468 1469 1470 1471 1472 1473"
+msgid "1471 1472 1473 1474 1475 1476 1477"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:869(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1467"
+msgid "# File 'lib/test/unit/assertions.rb', line 1471"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:872(span)
@@ -19489,7 +19486,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/Collector/Dir.html:782(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:785(span)
#: doc/reference/en/Test/Unit/MixColor.html:396(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2751(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2787(span)
#: doc/reference/en/Test/Unit/Color.html:620(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:1913(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:1914(span)
@@ -19500,11 +19497,11 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1047(span)
#: doc/reference/en/Test/Unit/Assertions.html:1338(span)
#: doc/reference/en/Test/Unit/Assertions.html:1508(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2496(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2844(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2965(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3006(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3168(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2504(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2852(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2973(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3014(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3176(span)
#: doc/reference/en/Test/Unit/Collector.html:248(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:675(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:782(span)
@@ -19540,19 +19537,19 @@ msgid "+ ( ) (value)"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:893(pre)
-msgid "1427 1428 1429"
+msgid "1431 1432 1433"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:901(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1427"
+msgid "# File 'lib/test/unit/assertions.rb', line 1431"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:921(pre)
-msgid "1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452"
+msgid "1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:939(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1440"
+msgid "# File 'lib/test/unit/assertions.rb', line 1444"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:942(span)
@@ -19578,11 +19575,11 @@ msgid "+ ( ) (size)"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:969(pre)
-msgid "1455 1456 1457"
+msgid "1459 1460 1461"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:977(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1455"
+msgid "# File 'lib/test/unit/assertions.rb', line 1459"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:988(p)
@@ -19590,25 +19587,25 @@ msgid "+ ( ) (value, &formatter)"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:997(pre)
-msgid "1435 1436 1437"
+msgid "1439 1440 1441"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1005(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1435"
+msgid "# File 'lib/test/unit/assertions.rb', line 1439"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1025(pre)
-msgid "1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488"
+msgid "1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1044(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1475"
+msgid "# File 'lib/test/unit/assertions.rb', line 1479"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1047(span)
#: doc/reference/en/Test/Unit/Assertions.html:1328(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2361(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3158(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2369(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3166(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2235(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2249(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2261(span)
@@ -19622,11 +19619,11 @@ msgid "- ( ) (string)"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1081(pre)
-msgid "1753 1754 1755"
+msgid "1757 1758 1759"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1089(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1753"
+msgid "# File 'lib/test/unit/assertions.rb', line 1757"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1092(span)
@@ -19638,19 +19635,19 @@ msgid "- ( ) (object)"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1109(pre)
-msgid "1745 1746 1747"
+msgid "1749 1750 1751"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1117(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1745"
+msgid "# File 'lib/test/unit/assertions.rb', line 1749"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1137(pre)
-msgid "1749 1750 1751"
+msgid "1753 1754 1755"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1145(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1749"
+msgid "# File 'lib/test/unit/assertions.rb', line 1753"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1148(span)
@@ -19658,11 +19655,11 @@ msgid "@template"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1165(pre)
-msgid "1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768"
+msgid "1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1182(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1757"
+msgid "# File 'lib/test/unit/assertions.rb', line 1761"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertionMessage.html:1185(span)
@@ -19691,7 +19688,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:39(span)
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:194(a)
#: doc/reference/en/Test/Unit/Assertions.html:123(a)
-#: doc/reference/en/Test/Unit/Assertions.html:3164(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3172(span)
#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:94(a)
msgid "AssertExceptionHelper"
msgstr ""
@@ -19745,11 +19742,11 @@ msgid "A new instance of WrappedException"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper/WrappedException.html:202(pre)
-msgid "1773 1774 1775"
+msgid "1777 1778 1779"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper/WrappedException.html:210(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1773"
+msgid "# File 'lib/test/unit/assertions.rb', line 1777"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper/WrappedException.html:212(span)
@@ -19758,13 +19755,13 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:332(span)
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:333(span)
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:335(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3603(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3604(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3605(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3606(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3661(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3666(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3671(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3611(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3612(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3613(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3614(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3669(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3674(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3679(span)
#: doc/reference/en/Test/Unit/Error.html:143(strong)
#: doc/reference/en/Test/Unit/Error.html:461(span)
#: doc/reference/en/Test/Unit/Error.html:463(span)
@@ -19797,28 +19794,28 @@ msgid "- ( ) (name, *args, &block)"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper/WrappedException.html:238(pre)
-msgid "1785 1786 1787"
+msgid "1789 1790 1791"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper/WrappedException.html:246(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1785"
+msgid "# File 'lib/test/unit/assertions.rb', line 1789"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper/WrappedException.html:248(span)
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper/WrappedException.html:249(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3156(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3158(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3159(span)
#: doc/reference/en/Test/Unit/Assertions.html:3164(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3168(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3502(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3513(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3569(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3581(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3711(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3712(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4012(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4013(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3166(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3167(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3172(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3176(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3510(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3521(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3577(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3589(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3719(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3720(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4020(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4021(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:219(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:220(span)
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:432(span)
@@ -19847,20 +19844,20 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper/WrappedException.html:249(span)
#: doc/reference/en/Test/Unit/Assertions.html:1656(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2902(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3106(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3278(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3455(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3881(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2910(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3114(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3286(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3463(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3889(span)
msgid "__send__"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper/WrappedException.html:273(pre)
-msgid "1777 1778 1779 1780 1781 1782 1783"
+msgid "1781 1782 1783 1784 1785 1786 1787"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper/WrappedException.html:285(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1777"
+msgid "# File 'lib/test/unit/assertions.rb', line 1781"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper/WrappedException.html:288(span)
@@ -19886,9 +19883,9 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:121(strong)
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:246(strong)
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:288(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3169(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3510(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3578(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3177(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3518(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3586(span)
msgid "expected?"
msgstr ""
@@ -19902,8 +19899,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:229(span)
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:302(strong)
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:330(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3505(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3572(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3513(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3580(span)
msgid "expected_exceptions"
msgstr ""
@@ -19927,11 +19924,11 @@ msgid "A new instance of AssertExceptionHelper"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:212(pre)
-msgid "1802 1803 1804 1805 1806 1807"
+msgid "1806 1807 1808 1809 1810 1811"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:223(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1802"
+msgid "# File 'lib/test/unit/assertions.rb', line 1806"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:227(span)
@@ -19960,23 +19957,23 @@ msgid "- ( ) (actual_exception, equality = nil)"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:275(pre)
-msgid "1824 1825 1826 1827 1828 1829"
+msgid "1828 1829 1830 1831 1832 1833"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:286(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1824"
+msgid "# File 'lib/test/unit/assertions.rb', line 1828"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:288(span)
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:290(span)
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:291(span)
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:292(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3504(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3508(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3510(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3571(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3576(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3578(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3512(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3516(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3518(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3579(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3584(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3586(span)
msgid "actual_exception"
msgstr ""
@@ -20003,11 +20000,11 @@ msgid "expected_object?"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:309(pre)
-msgid "1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822"
+msgid "1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:328(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1809"
+msgid "# File 'lib/test/unit/assertions.rb', line 1813"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions/AssertExceptionHelper.html:331(span)
@@ -20172,11 +20169,11 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCasePendingSupport.html:269(span)
#: doc/reference/en/Test/Unit/Assertions.html:1222(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3230(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3970(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4109(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:4126(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2106(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3238(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3978(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4117(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:4134(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2118(span)
msgid "flunk"
msgstr ""
@@ -20218,9 +20215,6 @@ msgid "- (Object) (attribute_name)"
msgstr ""
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:150(a)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:369(a)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:411(a)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:453(a)
msgid "- (Object) (method_name)"
msgstr ""
@@ -20343,9 +20337,6 @@ msgid "@@attribute_observers"
msgstr ""
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:380(p)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:849(p)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:905(p)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:961(p)
msgid "- ( ) (method_name)"
msgstr ""
@@ -20368,8 +20359,8 @@ msgid "ancestor"
msgstr ""
#: doc/reference/en/Test/Unit/Attribute/ClassMethods.html:414(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2218(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2220(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2226(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2228(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:674(span)
#: doc/reference/en/Test/Unit/Collector/ObjectSpace.html:272(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:1856(span)
@@ -20832,7 +20823,7 @@ msgid "256"
msgstr ""
#: doc/reference/en/Test/Unit/ColorScheme.html:589(span)
-#: doc/reference/en/file.news.html:385(span)
+#: doc/reference/en/file.news.html:403(span)
msgid "TERM"
msgstr ""
@@ -21192,37 +21183,37 @@ msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:96(strong)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:483(strong)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:500(span)
-msgid "after_cleanup_methods"
+msgid "after_cleanup_callbacks"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:117(strong)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:511(strong)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:528(span)
-msgid "after_setup_methods"
+msgid "after_setup_callbacks"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:138(strong)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:539(strong)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:556(span)
-msgid "after_teardown_methods"
+msgid "after_teardown_callbacks"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:159(strong)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:567(strong)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:584(span)
-msgid "before_cleanup_methods"
+msgid "before_cleanup_callbacks"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:180(strong)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:595(strong)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:612(span)
-msgid "before_setup_methods"
+msgid "before_setup_callbacks"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:201(strong)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:623(strong)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:640(span)
-msgid "before_teardown_methods"
+msgid "before_teardown_callbacks"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:222(strong)
@@ -21232,46 +21223,52 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:159(p)
#: doc/reference/en/Test/Unit/TestCase.html:729(strong)
#: doc/reference/en/Test/Unit/TestCase.html:1976(strong)
-#: doc/reference/en/Test/Unit/TestCase.html:2017(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2038(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2029(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2050(span)
msgid "cleanup"
msgstr ""
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:222(a)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:306(a)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:327(a)
+msgid "- (Object) (*method_names, &callback)"
+msgstr ""
+
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:243(strong)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:679(strong)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:697(span)
-msgid "register_cleanup_method"
+msgid "register_cleanup_callback"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:243(a)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:264(a)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:285(a)
-msgid "- (Object) (method_name, options)"
+msgid "- (Object) (method_name_or_callback, options)"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:264(strong)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:709(strong)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:726(span)
-msgid "register_setup_method"
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:727(span)
+msgid "register_setup_callback"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:285(strong)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:737(strong)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:755(span)
-msgid "register_teardown_method"
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:739(strong)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:757(span)
+msgid "register_teardown_callback"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:306(strong)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:767(strong)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:784(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:769(strong)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:786(span)
#: doc/reference/en/Test/Unit/TestCase.html:147(p)
#: doc/reference/en/Test/Unit/TestCase.html:155(p)
#: doc/reference/en/Test/Unit/TestCase.html:963(strong)
#: doc/reference/en/Test/Unit/TestCase.html:1619(p)
#: doc/reference/en/Test/Unit/TestCase.html:1623(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2442(strong)
-#: doc/reference/en/Test/Unit/TestCase.html:2476(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2503(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2454(strong)
+#: doc/reference/en/Test/Unit/TestCase.html:2496(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2527(span)
#: doc/reference/en/Test/Unit/Priority.html:556(span)
#: doc/reference/en/Test/Unit/Priority.html:594(span)
#: doc/reference/en/Test/Unit/Priority/Checker.html:386(strong)
@@ -21281,16 +21278,16 @@ msgid "setup"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:327(strong)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:795(strong)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:812(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:797(strong)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:814(span)
#: doc/reference/en/Test/Unit/TestCase.html:153(p)
#: doc/reference/en/Test/Unit/TestCase.html:161(p)
#: doc/reference/en/Test/Unit/TestCase.html:1030(strong)
#: doc/reference/en/Test/Unit/TestCase.html:1543(p)
#: doc/reference/en/Test/Unit/TestCase.html:1547(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2580(strong)
-#: doc/reference/en/Test/Unit/TestCase.html:2620(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2641(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2604(strong)
+#: doc/reference/en/Test/Unit/TestCase.html:2656(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2677(span)
#: doc/reference/en/Test/Unit/Priority.html:557(span)
#: doc/reference/en/Test/Unit/Priority.html:624(span)
#: doc/reference/en/Test/Unit/Priority/Checker.html:407(strong)
@@ -21300,39 +21297,51 @@ msgid "teardown"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:348(strong)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:823(strong)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:840(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:825(strong)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:842(span)
msgid "unregister_cleanup"
msgstr ""
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:348(a)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:390(a)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:432(a)
+msgid "- (Object) (*method_names_or_callbacks)"
+msgstr ""
+
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:369(strong)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:851(strong)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:868(span)
-msgid "unregister_cleanup_method"
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:853(strong)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:870(span)
+msgid "unregister_cleanup_callback"
+msgstr ""
+
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:369(a)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:411(a)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:453(a)
+msgid "- (Object) (method_name_or_callback)"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:390(strong)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:879(strong)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:896(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:881(strong)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:898(span)
msgid "unregister_setup"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:411(strong)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:907(strong)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:924(span)
-msgid "unregister_setup_method"
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:909(strong)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:926(span)
+msgid "unregister_setup_callback"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:432(strong)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:935(strong)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:952(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:937(strong)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:954(span)
msgid "unregister_teardown"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:453(strong)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:963(strong)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:980(span)
-msgid "unregister_teardown_method"
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:965(strong)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:982(span)
+msgid "unregister_teardown_callback"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:490(pre)
@@ -21349,13 +21358,13 @@ msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:585(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:613(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:641(span)
-msgid "collect_fixture_methods"
+msgid "collect_fixture_callbacks"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:501(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:529(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:557(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:727(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:729(span)
#: doc/reference/en/Test/Unit/Priority.html:557(span)
msgid ":after"
msgstr ""
@@ -21389,7 +21398,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:613(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:641(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:699(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:757(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:759(span)
#: doc/reference/en/Test/Unit/Priority.html:556(span)
msgid ":before"
msgstr ""
@@ -21412,25 +21421,26 @@ msgstr ""
msgid "# File 'lib/test/unit/fixture.rb', line 89"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:658(pre)
-#: doc/reference/en/Test/Unit/Error.html:816(pre)
-msgid "31 32 33"
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:649(p)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:767(p)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:795(p)
+msgid "- ( ) (*method_names, &callback)"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:666(span)
-msgid "# File 'lib/test/unit/fixture.rb', line 31"
+msgid "# File 'lib/test/unit/fixture.rb', line 30"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:669(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:785(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:813(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:787(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:815(span)
msgid "register_fixture"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:677(p)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:707(p)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:735(p)
-msgid "- ( ) (method_name, options)"
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:737(p)
+msgid "- ( ) (method_name_or_callback, options)"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:686(pre)
@@ -21441,111 +21451,137 @@ msgstr ""
msgid "# File 'lib/test/unit/fixture.rb', line 55"
msgstr ""
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:697(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:698(span)
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:727(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:756(span)
-msgid "register_fixture_method"
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:728(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:757(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:758(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:870(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:871(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:926(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:927(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:982(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:983(span)
+msgid "method_name_or_callback"
+msgstr ""
+
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:698(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:728(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:758(span)
+msgid "register_fixture_callback"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:699(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:757(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:759(span)
#: doc/reference/en/Test/Unit/Priority.html:556(span)
msgid ":prepend"
msgstr ""
#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:716(pre)
-msgid "47 48 49"
+msgid "46 47 48 49"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:724(span)
-msgid "# File 'lib/test/unit/fixture.rb', line 47"
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:725(span)
+msgid "# File 'lib/test/unit/fixture.rb', line 46"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:727(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:729(span)
#: doc/reference/en/Test/Unit/Priority.html:557(span)
msgid ":append"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:744(pre)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:746(pre)
msgid "64 65 66 67"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:753(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:755(span)
msgid "# File 'lib/test/unit/fixture.rb', line 64"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:774(pre)
-#: doc/reference/en/Test/Unit/UI/TestRunnerUtilities.html:190(pre)
-#: doc/reference/en/Test/Unit/AutoRunner.html:1554(pre)
-msgid "23 24 25"
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:776(pre)
+msgid "22 23 24"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:782(span)
-msgid "# File 'lib/test/unit/fixture.rb', line 23"
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:784(span)
+msgid "# File 'lib/test/unit/fixture.rb', line 22"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:810(span)
-msgid "# File 'lib/test/unit/fixture.rb', line 39"
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:812(span)
+msgid "# File 'lib/test/unit/fixture.rb', line 38"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:830(pre)
-#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:306(pre)
-#: doc/reference/en/Test/Unit/Error.html:626(pre)
-msgid "35 36 37"
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:823(p)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:879(p)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:935(p)
+msgid "- ( ) (*method_names_or_callbacks)"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:838(span)
-msgid "# File 'lib/test/unit/fixture.rb', line 35"
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:840(span)
+msgid "# File 'lib/test/unit/fixture.rb', line 34"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:841(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:897(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:953(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:842(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:843(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:898(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:899(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:954(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:955(span)
+msgid "method_names_or_callbacks"
+msgstr ""
+
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:843(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:899(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:955(span)
msgid "unregister_fixture"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:858(pre)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:851(p)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:907(p)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:963(p)
+msgid "- ( ) (method_name_or_callback)"
+msgstr ""
+
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:860(pre)
msgid "60 61 62"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:866(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:868(span)
msgid "# File 'lib/test/unit/fixture.rb', line 60"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:869(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:925(span)
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:981(span)
-msgid "unregister_fixture_method"
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:871(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:927(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:983(span)
+msgid "unregister_fixture_callback"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:886(pre)
-#: doc/reference/en/Test/Unit/Priority.html:427(pre)
-#: doc/reference/en/Test/Unit/Color.html:492(pre)
-#: doc/reference/en/Test/Unit/AutoRunner.html:1582(pre)
-msgid "27 28 29"
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:888(pre)
+#: doc/reference/en/Test/Unit/UI/TestRunnerMediator.html:241(pre)
+msgid "26 27 28"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:894(span)
-msgid "# File 'lib/test/unit/fixture.rb', line 27"
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:896(span)
+msgid "# File 'lib/test/unit/fixture.rb', line 26"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:914(pre)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:916(pre)
msgid "51 52 53"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:922(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:924(span)
msgid "# File 'lib/test/unit/fixture.rb', line 51"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:950(span)
-msgid "# File 'lib/test/unit/fixture.rb', line 43"
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:952(span)
+msgid "# File 'lib/test/unit/fixture.rb', line 42"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:970(pre)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:972(pre)
msgid "69 70 71"
msgstr ""
-#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:978(span)
+#: doc/reference/en/Test/Unit/Fixture/ClassMethods.html:980(span)
msgid "# File 'lib/test/unit/fixture.rb', line 69"
msgstr ""
@@ -21701,43 +21737,43 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1850(span)
#: doc/reference/en/Test/Unit/Assertions.html:1920(span)
#: doc/reference/en/Test/Unit/Assertions.html:1981(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2151(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2308(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2366(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2399(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2492(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2558(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2593(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2763(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2810(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2843(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2903(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2954(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2961(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3000(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3099(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3170(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3227(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3271(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3273(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3332(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3391(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3456(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3506(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3573(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3657(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3674(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3754(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3761(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3800(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3874(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3958(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2159(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2316(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2374(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2407(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2500(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2566(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2601(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2771(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2818(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2851(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2911(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2962(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2969(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3008(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3107(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3178(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3235(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3279(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3281(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3340(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3399(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3464(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3514(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3581(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3665(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3682(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3762(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3769(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3808(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3882(span)
#: doc/reference/en/Test/Unit/Assertions.html:3966(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4064(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4079(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:4097(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4127(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3974(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4072(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4087(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:4105(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4135(span)
msgid "build_message"
msgstr ""
@@ -21762,45 +21798,45 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1922(span)
#: doc/reference/en/Test/Unit/Assertions.html:1981(span)
#: doc/reference/en/Test/Unit/Assertions.html:2033(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2087(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2155(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2215(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2231(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2297(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2315(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2367(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2402(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2495(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2561(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2594(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2643(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2699(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2767(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2813(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2844(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2909(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2958(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2965(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3006(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3105(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3171(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3272(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3278(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3335(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3394(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3462(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3509(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3577(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3662(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3677(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3758(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3765(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3806(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3880(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3949(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3961(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4064(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4127(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2091(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2163(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2223(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2239(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2305(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2323(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2375(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2410(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2503(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2569(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2602(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2651(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2707(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2775(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2821(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2852(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2917(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2966(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2973(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3014(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3113(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3179(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3280(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3286(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3343(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3402(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3470(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3517(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3585(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3670(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3685(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3766(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3773(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3814(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3888(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3957(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3969(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4072(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4135(span)
msgid "assert_block"
msgstr ""
@@ -21829,8 +21865,8 @@ msgid "^uncaught throw (.+)$"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:138(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3223(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3962(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3231(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3970(span)
msgid "ThreadError"
msgstr ""
@@ -21849,8 +21885,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:189(strong)
#: doc/reference/en/Test/Unit/Assertions.html:1286(strong)
#: doc/reference/en/Test/Unit/Assertions.html:1324(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3220(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3232(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3228(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3240(span)
#: doc/reference/en/Test/Unit.html:260(span)
msgid "assert"
msgstr ""
@@ -21942,11 +21978,11 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1637(span)
#: doc/reference/en/Test/Unit/Assertions.html:1648(span)
#: doc/reference/en/Test/Unit/Assertions.html:1656(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3269(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3271(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3272(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3273(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3278(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3277(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3279(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3280(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3281(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3286(span)
msgid "operator"
msgstr ""
@@ -21976,10 +22012,10 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1708(span)
#: doc/reference/en/Test/Unit/Assertions.html:1712(span)
#: doc/reference/en/Test/Unit/Assertions.html:1714(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2457(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2490(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2494(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2496(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2465(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2498(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2502(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2504(span)
msgid "constant_name"
msgstr ""
@@ -22066,7 +22102,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:438(strong)
#: doc/reference/en/Test/Unit/Assertions.html:2046(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2077(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2081(span)
msgid "assert_in_epsilon"
msgstr ""
@@ -22078,12 +22114,12 @@ msgid ""
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:459(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2102(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2113(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2114(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2115(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2116(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2147(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2110(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:2121(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2122(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2123(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2124(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2155(span)
msgid "assert_include"
msgstr ""
@@ -22094,32 +22130,32 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:473(tt)
#: doc/reference/en/Test/Unit/Assertions.html:710(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2109(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2147(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2149(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2153(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2156(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2721(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2759(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2761(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2765(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2768(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2117(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2155(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2157(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2161(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2164(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2729(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:2767(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2769(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2773(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2776(span)
msgid "collection"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:473(p)
-#: doc/reference/en/Test/Unit/Assertions.html:2109(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2117(p)
msgid "Passes if includes ."
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:482(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2168(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2211(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2436(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2807(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3085(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3860(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3946(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2176(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:2219(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2444(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2815(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3093(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3868(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3954(span)
msgid "assert_instance_of"
msgstr ""
@@ -22129,14 +22165,14 @@ msgid "- (Object) (klass, object, message = \"\")"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:503(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2248(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2293(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2256(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:2301(span)
msgid "assert_kind_of"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:524(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2332(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2358(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2340(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:2366(span)
msgid "assert_match"
msgstr ""
@@ -22145,8 +22181,8 @@ msgid "- (Object) (pattern, string, message = \"\")"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:545(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2378(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2398(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2386(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:2406(span)
msgid "assert_nil"
msgstr ""
@@ -22156,8 +22192,8 @@ msgid "- (Object) (object, message = \"\")"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:566(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2412(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2434(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2420(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:2442(span)
msgid "assert_no_match"
msgstr ""
@@ -22167,10 +22203,10 @@ msgid "- (Object) (regexp, string, message = \"\")"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:587(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2450(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2461(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2462(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2490(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2458(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:2469(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2470(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2498(span)
msgid "assert_not_const_defined"
msgstr ""
@@ -22179,25 +22215,25 @@ msgid "Passes if ! .const_defined?( )."
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:610(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2508(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2519(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2520(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2521(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2522(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2523(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2524(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2554(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2516(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:2527(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2528(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2529(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2530(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2531(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2532(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2562(span)
msgid "assert_not_empty"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:624(p)
-#: doc/reference/en/Test/Unit/Assertions.html:2515(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2523(p)
msgid "Passes if is not empty."
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:633(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2574(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2592(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2582(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:2600(span)
msgid "assert_not_equal"
msgstr ""
@@ -22208,50 +22244,50 @@ msgid "- (Object) (expected, actual, message = \"\")"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:654(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2604(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2633(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2612(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:2641(span)
msgid "assert_not_in_delta"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:675(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2656(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2688(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2664(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:2696(span)
msgid "assert_not_in_epsilon"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:696(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2714(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2725(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2726(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2727(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2728(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2759(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2722(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:2733(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2734(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2735(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2736(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2767(span)
msgid "assert_not_include"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:710(p)
-#: doc/reference/en/Test/Unit/Assertions.html:2721(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2729(p)
msgid "Passes if doesn't include ."
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:719(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2439(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2780(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2805(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2447(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2788(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:2813(span)
msgid "assert_not_match"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:740(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2824(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2842(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2832(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:2850(span)
msgid "assert_not_nil"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:761(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2854(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2865(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2866(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2899(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2862(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:2873(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2874(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2907(span)
msgid "assert_not_predicate"
msgstr ""
@@ -22262,27 +22298,27 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:775(tt)
#: doc/reference/en/Test/Unit/Assertions.html:972(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2861(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:2899(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2901(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2902(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2869(tt)
#: doc/reference/en/Test/Unit/Assertions.html:2907(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3414(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3452(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3454(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3455(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2909(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2910(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2915(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3422(tt)
#: doc/reference/en/Test/Unit/Assertions.html:3460(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3462(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3463(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3468(span)
msgid "predicate"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:775(p)
-#: doc/reference/en/Test/Unit/Assertions.html:2861(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2869(p)
msgid "Passes if . is not ."
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:784(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2922(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2952(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2930(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:2960(span)
msgid "assert_not_respond_to"
msgstr ""
@@ -22292,16 +22328,16 @@ msgid "- (Object) (object, method, message = \"\")"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:805(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2976(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:2999(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2984(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:3007(span)
msgid "assert_not_same"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:826(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3016(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3036(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3037(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3083(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3024(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:3044(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3045(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3091(span)
msgid "assert_not_send"
msgstr ""
@@ -22311,13 +22347,13 @@ msgid "- (Object) (send_array, message = nil)"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:840(p)
-#: doc/reference/en/Test/Unit/Assertions.html:3023(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3031(p)
msgid "Passes if the method send doesn't return a true value."
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:849(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3119(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3156(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3127(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:3164(span)
msgid "assert_nothing_raised"
msgstr ""
@@ -22327,8 +22363,8 @@ msgid "- (Object) (*args)"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:870(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3187(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3218(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3195(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:3226(span)
msgid "assert_nothing_thrown"
msgstr ""
@@ -22337,10 +22373,10 @@ msgid "- (Object) (message = \"\", &proc)"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:891(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3088(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3243(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3269(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3863(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3096(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3251(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:3277(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3871(span)
msgid "assert_operator"
msgstr ""
@@ -22349,11 +22385,11 @@ msgid "- (Object) (object1, operator, object2, message = \"\")"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:912(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3289(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3300(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3301(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3302(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3330(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3297(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:3308(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3309(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3310(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3338(span)
msgid "assert_path_exist"
msgstr ""
@@ -22364,14 +22400,14 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:926(tt)
#: doc/reference/en/Test/Unit/Assertions.html:949(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3296(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3330(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3334(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3336(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3355(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3389(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3393(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3395(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3304(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:3338(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3342(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3344(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3363(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:3397(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3401(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3403(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:709(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:711(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:713(span)
@@ -22382,41 +22418,41 @@ msgid "path"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:926(p)
-#: doc/reference/en/Test/Unit/Assertions.html:3296(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3304(p)
msgid "Passes if exists."
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:935(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3348(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3359(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3360(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3361(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3389(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3356(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:3367(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3368(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3369(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3397(span)
msgid "assert_path_not_exist"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:949(p)
-#: doc/reference/en/Test/Unit/Assertions.html:3355(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3363(p)
msgid "Passes if doesn't exist."
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:958(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3407(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3418(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3419(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3452(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3415(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:3426(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3427(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3460(span)
msgid "assert_predicate"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:972(p)
-#: doc/reference/en/Test/Unit/Assertions.html:3414(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3422(p)
msgid "Passes if . is ."
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:981(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3475(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3502(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3712(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3483(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:3510(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3720(span)
msgid "assert_raise"
msgstr ""
@@ -22428,26 +22464,26 @@ msgid "- (Object) (*args, &block)"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1002(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3523(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3535(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3569(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3531(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:3543(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3577(span)
msgid "assert_raise_kind_of"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1016(p)
-#: doc/reference/en/Test/Unit/Assertions.html:3530(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3538(p)
msgid ""
"Passes if the block raises one of the given exceptions or sub exceptions of "
"the given exceptions."
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1026(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3591(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3603(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3604(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3605(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3606(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3655(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3599(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:3611(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3612(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3613(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3614(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3663(span)
msgid "assert_raise_message"
msgstr ""
@@ -22456,47 +22492,47 @@ msgid "- (Object) (expected, message = nil)"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1040(p)
-#: doc/reference/en/Test/Unit/Assertions.html:3598(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3606(p)
msgid ""
"Passes if an exception is raised in block and its message is ."
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1050(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3694(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3711(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3702(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:3719(span)
msgid "assert_raises"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1071(strong)
#: doc/reference/en/Test/Unit/Assertions.html:1774(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2149(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2556(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2761(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2901(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3454(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3722(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3752(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2157(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2564(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2769(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2909(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3462(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3730(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:3760(span)
msgid "assert_respond_to"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1092(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3776(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3799(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3784(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:3807(span)
msgid "assert_same"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1113(strong)
#: doc/reference/en/Test/Unit/Assertions.html:1636(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3816(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3858(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3824(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:3866(span)
msgid "assert_send"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1134(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3894(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3941(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4013(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3902(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:3949(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4021(span)
msgid "assert_throw"
msgstr ""
@@ -22505,26 +22541,26 @@ msgid "- (Object) (expected_object, message = \"\", &proc)"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1155(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:3982(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:4012(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3990(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:4020(span)
msgid "assert_throws"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1169(p)
-#: doc/reference/en/Test/Unit/Assertions.html:3989(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3997(p)
msgid "Alias of assert_throw."
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1178(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:4023(strong)
-#: doc/reference/en/Test/Unit/Assertions.html:4034(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4035(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4062(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4031(strong)
+#: doc/reference/en/Test/Unit/Assertions.html:4042(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4043(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4070(span)
msgid "assert_true"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1192(p)
-#: doc/reference/en/Test/Unit/Assertions.html:4030(p)
+#: doc/reference/en/Test/Unit/Assertions.html:4038(p)
msgid "Passes if is true."
msgstr ""
@@ -22537,11 +22573,11 @@ msgid "- (Object) (message = \"Flunked\")"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1259(pre)
-msgid "1387 1388 1389"
+msgid "1391 1392 1393"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1267(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1387"
+msgid "# File 'lib/test/unit/assertions.rb', line 1391"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1284(p)
@@ -22566,32 +22602,32 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1919(span)
#: doc/reference/en/Test/Unit/Assertions.html:1980(span)
#: doc/reference/en/Test/Unit/Assertions.html:2025(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2079(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2148(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2212(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2294(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2359(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2435(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2491(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2555(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2634(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2690(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2760(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2806(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2900(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2953(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3084(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3157(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3219(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3270(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3331(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3390(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3453(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3656(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3753(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3859(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3942(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4063(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2083(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2156(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2220(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2302(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2367(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2443(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2499(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2563(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2642(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2698(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2768(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2814(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2908(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2961(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3092(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3165(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3227(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3278(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3339(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3398(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3461(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3664(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3761(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3867(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3950(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4071(span)
msgid "_wrap_assertion"
msgstr ""
@@ -22656,23 +22692,23 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1739(span)
#: doc/reference/en/Test/Unit/Assertions.html:1885(span)
#: doc/reference/en/Test/Unit/Assertions.html:1951(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2113(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2114(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2461(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2519(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2520(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2521(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2725(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2726(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2865(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3037(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3300(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3301(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3359(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3418(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3603(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3604(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4034(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2121(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2122(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2469(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2527(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2528(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2529(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2733(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2734(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2873(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3045(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3308(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3309(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3367(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3426(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3611(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3612(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4042(span)
msgid "# -> pass"
msgstr ""
@@ -22689,35 +22725,35 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1742(span)
#: doc/reference/en/Test/Unit/Assertions.html:1886(span)
#: doc/reference/en/Test/Unit/Assertions.html:1952(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2115(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2116(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2462(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2522(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2523(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2524(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2727(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2728(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2866(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3036(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3302(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3360(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3361(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3419(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3605(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3606(span)
-#: doc/reference/en/Test/Unit/Assertions.html:4035(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2123(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2124(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2470(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2530(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2531(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2532(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2735(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2736(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2874(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3044(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3310(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3368(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3369(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3427(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3613(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3614(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4043(span)
msgid "# -> fail"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1381(pre)
msgid ""
-"1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 "
-"1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 "
-"1212 1213 1214 1215 1216 1217 1218 1219 1220"
+"1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 "
+"1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 "
+"1216 1217 1218 1219 1220 1221 1222 1223 1224"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1425(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1182"
+msgid "# File 'lib/test/unit/assertions.rb', line 1186"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1429(span)
@@ -22731,8 +22767,8 @@ msgid "<?>.? doesn't exist\\n"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1432(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2963(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3763(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2971(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3771(span)
msgid "(Class: <?>)"
msgstr ""
@@ -22765,72 +22801,72 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1922(span)
#: doc/reference/en/Test/Unit/Assertions.html:2029(span)
#: doc/reference/en/Test/Unit/Assertions.html:2033(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2083(span)
#: doc/reference/en/Test/Unit/Assertions.html:2087(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2151(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2155(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2231(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2308(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2315(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2366(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2367(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2399(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2402(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2492(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2495(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2558(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2561(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2593(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2594(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2638(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2643(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2694(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2699(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2763(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2767(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2810(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2813(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2843(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2844(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2903(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2909(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2954(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2958(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2961(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2965(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3000(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3006(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3098(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3105(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3227(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3230(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3271(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3272(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3273(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3278(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3456(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3462(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3506(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3509(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3573(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3577(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3657(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3662(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3673(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3677(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3754(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3758(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3761(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3765(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3800(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3806(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3873(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3880(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3958(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3961(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2091(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2159(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2163(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2239(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2316(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2323(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2374(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2375(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2407(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2410(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2500(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2503(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2566(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2569(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2601(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2602(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2646(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2651(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2702(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2707(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2771(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2775(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2818(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2821(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2851(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2852(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2911(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2917(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2962(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2966(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2969(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2973(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3008(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3014(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3106(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3113(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3235(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3238(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3279(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3280(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3281(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3286(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3464(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3470(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3514(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3517(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3581(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3585(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3665(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3670(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3681(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3685(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3762(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3766(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3769(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3773(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3808(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3814(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3881(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3888(span)
#: doc/reference/en/Test/Unit/Assertions.html:3966(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3970(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3969(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3974(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3978(span)
msgid "full_message"
msgstr ""
@@ -22870,7 +22906,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1509(span)
#: doc/reference/en/Test/Unit/Assertions.html:1857(span)
#: doc/reference/en/Test/Unit/Assertions.html:1926(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3168(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3176(span)
#: doc/reference/en/Test/Unit/AssertionFailedError.html:39(span)
#: doc/reference/en/Test/Unit/AssertionFailedError.html:293(a)
#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:101(a)
@@ -22879,16 +22915,16 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1519(p)
#: doc/reference/en/Test/Unit/Assertions.html:1938(p)
-#: doc/reference/en/Test/Unit/Assertions.html:4021(p)
+#: doc/reference/en/Test/Unit/Assertions.html:4029(p)
msgid "- ( ) (actual, message = nil)"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1544(pre)
-msgid "958 959 960 961 962 963 964 965 966"
+msgid "962 963 964 965 966 967 968 969 970"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1558(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 958"
+msgid "# File 'lib/test/unit/assertions.rb', line 962"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1563(span)
@@ -22896,8 +22932,8 @@ msgid "<true> or <false> expected but was\\n<?>"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1565(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2156(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2768(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2164(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2776(span)
#: doc/reference/en/Test/Unit/Collector.html:154(strong)
#: doc/reference/en/Test/Unit/Collector.html:248(span)
#: doc/reference/en/Test/Unit/Collector.html:298(strong)
@@ -22918,14 +22954,14 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1589(span)
#: doc/reference/en/Test/Unit/Assertions.html:1590(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2113(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2114(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2115(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2116(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2725(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2726(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2727(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2728(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2121(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2122(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2123(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2124(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2733(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2734(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2735(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2736(span)
msgid "10"
msgstr ""
@@ -22937,25 +22973,25 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1601(pre)
msgid ""
-"1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 "
-"1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032"
+"1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 "
+"1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1632(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1007"
+msgid "# File 'lib/test/unit/assertions.rb', line 1011"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1636(span)
#: doc/reference/en/Test/Unit/Assertions.html:1640(span)
#: doc/reference/en/Test/Unit/Assertions.html:2034(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2090(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2748(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2098(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2784(span)
msgid "<="
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1636(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2149(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2761(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2157(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2769(span)
msgid ":include?"
msgstr ""
@@ -22988,8 +23024,8 @@ msgid "<<-EOT"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1648(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2905(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3458(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2913(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3466(span)
msgid "<?>"
msgstr ""
@@ -23002,25 +23038,25 @@ msgid "<?> expected #{"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1649(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2311(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2319(span)
msgid "<?>."
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1651(span)
#: doc/reference/en/Test/Unit/Assertions.html:1844(span)
#: doc/reference/en/Test/Unit/Assertions.html:1853(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2230(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2401(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3005(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3095(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3277(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3805(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3870(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2238(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2409(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3013(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3103(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3285(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3813(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3878(span)
msgid "EOT"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1666(p)
-#: doc/reference/en/Test/Unit/Assertions.html:2448(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2456(p)
msgid ""
"- ( ) (object, constant_name, message = nil)"
msgstr ""
@@ -23030,21 +23066,21 @@ msgid "Passes if .const_defined?( )"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1679(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2462(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2470(span)
msgid ":Unit"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1680(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2461(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2469(span)
msgid ":Nonexistent"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1691(pre)
-msgid "1102 1103 1104 1105 1106 1107 1108 1109 1110 1111"
+msgid "1106 1107 1108 1109 1110 1111 1112 1113 1114 1115"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1706(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1102"
+msgid "# File 'lib/test/unit/assertions.rb', line 1106"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1711(span)
@@ -23052,35 +23088,35 @@ msgid "<?>.const_defined\\\\?(<?>) expected."
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1714(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2496(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2504(span)
#: doc/reference/en/Test/Unit/Diff.html:271(span)
msgid "const_defined?"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1724(p)
-#: doc/reference/en/Test/Unit/Assertions.html:2506(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2514(p)
msgid "- ( ) (object, message = nil)"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1753(pre)
-msgid "1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323"
+msgid "1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1770(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1312"
+msgid "# File 'lib/test/unit/assertions.rb', line 1316"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1774(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2556(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2865(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2866(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3418(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3419(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2564(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2873(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2874(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3426(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3427(span)
msgid ":empty?"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1775(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2557(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2565(span)
msgid "The object must respond to :empty?."
msgstr ""
@@ -23104,22 +23140,22 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1841(span)
#: doc/reference/en/Test/Unit/Assertions.html:1845(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3091(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3100(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3866(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3875(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3099(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3108(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3874(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3883(span)
msgid "format"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1841(span)
#: doc/reference/en/Test/Unit/Assertions.html:1850(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2399(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3000(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3091(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3273(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3800(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3866(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2407(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3008(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3099(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3281(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3808(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3874(span)
msgid "<<EOT"
msgstr ""
@@ -23151,11 +23187,11 @@ msgid "B"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1897(pre)
-msgid "1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053"
+msgid "1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1916(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1040"
+msgid "# File 'lib/test/unit/assertions.rb', line 1044"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1921(span)
@@ -23163,11 +23199,11 @@ msgid "Failed assertion was expected."
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1963(pre)
-msgid "990 991 992 993 994 995 996 997 998"
+msgid "994 995 996 997 998 999 1000 1001 1002"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1977(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 990"
+msgid "# File 'lib/test/unit/assertions.rb', line 994"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1982(span)
@@ -23175,7 +23211,7 @@ msgid "<false> expected but was\\n<?>"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:1994(p)
-#: doc/reference/en/Test/Unit/Assertions.html:2602(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2610(p)
msgid ""
"- ( ) (expected_float, actual_float, delta = "
"0.001, message = \"\")"
@@ -23193,18 +23229,18 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:2026(span)
#: doc/reference/en/Test/Unit/Assertions.html:2029(span)
#: doc/reference/en/Test/Unit/Assertions.html:2034(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2077(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2080(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2083(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2088(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2633(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2635(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2638(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2644(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2688(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2691(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2694(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2700(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2081(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2084(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2087(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2092(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2641(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2643(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2646(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2652(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2696(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2699(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2702(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2708(span)
msgid "expected_float"
msgstr ""
@@ -23212,18 +23248,18 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:2027(span)
#: doc/reference/en/Test/Unit/Assertions.html:2030(span)
#: doc/reference/en/Test/Unit/Assertions.html:2034(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2077(span)
#: doc/reference/en/Test/Unit/Assertions.html:2081(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2084(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2090(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2633(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2636(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2639(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2085(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2088(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2098(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2641(span)
#: doc/reference/en/Test/Unit/Assertions.html:2644(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2688(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2692(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2695(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2702(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2647(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2652(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2696(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2700(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2703(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2710(span)
msgid "actual_float"
msgstr ""
@@ -23231,147 +23267,156 @@ msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:2028(span)
#: doc/reference/en/Test/Unit/Assertions.html:2031(span)
#: doc/reference/en/Test/Unit/Assertions.html:2034(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2089(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2090(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2633(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2637(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2640(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2644(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2701(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2702(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2094(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2096(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2098(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2641(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2645(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2648(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2652(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2709(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2710(span)
msgid "delta"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:2024(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2077(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2633(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2688(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2081(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2641(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2696(span)
msgid "0.001"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:2026(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2635(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2643(span)
msgid "_assert_in_delta_validate_arguments"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:2029(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2638(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2646(span)
msgid "_assert_in_delta_message"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:2034(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2090(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2644(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2702(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2098(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2652(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2710(span)
msgid "abs"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:2044(p)
-#: doc/reference/en/Test/Unit/Assertions.html:2654(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2662(p)
msgid ""
"- ( ) (expected_float, actual_float, epsilon "
"= 0.001, message = \"\")"
msgstr ""
#: doc/reference/en/Test/Unit/Assertions.html:2053(pre)
-msgid "744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760"
+msgid ""
+"744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 "
+"763 764"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2075(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2079(span)
msgid "# File 'lib/test/unit/assertions.rb', line 744"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2077(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2082(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2085(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2081(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2086(span)
#: doc/reference/en/Test/Unit/Assertions.html:2089(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2688(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2693(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2094(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2096(span)
#: doc/reference/en/Test/Unit/Assertions.html:2696(span)
#: doc/reference/en/Test/Unit/Assertions.html:2701(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2704(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2709(span)
msgid "epsilon"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2080(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2691(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2084(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2699(span)
msgid "_assert_in_epsilon_validate_arguments"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2083(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2694(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2087(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2702(span)
msgid "_assert_in_epsilon_message"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2088(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2089(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2090(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2700(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2701(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2702(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2092(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2093(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2096(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2098(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2708(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2709(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2710(span)
msgid "normalized_expected_float"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2100(p)
-#: doc/reference/en/Test/Unit/Assertions.html:2712(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2094(span)
+msgid "**"
+msgstr ""
+
+#: doc/reference/en/Test/Unit/Assertions.html:2108(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2720(p)
msgid ""
"- ( ) (collection, object, message = nil)"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2114(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2115(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2725(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2728(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2122(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2123(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2733(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2736(span)
#: doc/reference/en/Test/Unit/Color.html:911(span)
msgid "5"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2116(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2726(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2124(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2734(span)
msgid "20"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2127(pre)
-msgid "1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278"
+#: doc/reference/en/Test/Unit/Assertions.html:2135(pre)
+msgid "1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2145(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1266"
+#: doc/reference/en/Test/Unit/Assertions.html:2153(span)
+msgid "# File 'lib/test/unit/assertions.rb', line 1270"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2150(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2762(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2158(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2770(span)
msgid "The collection must respond to :include?."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2152(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2160(span)
msgid "<?> expected to include\\n<?>."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2166(p)
-#: doc/reference/en/Test/Unit/Assertions.html:2246(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2174(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2254(p)
msgid "- ( ) (klass, object, message = \"\")"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2175(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:2183(pre)
msgid ""
"207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 "
"226 227 228 229 230 231 232 233 234 235"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2209(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2217(span)
msgid "# File 'lib/test/unit/assertions.rb', line 207"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2211(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2214(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2220(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2223(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2235(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2293(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2296(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2302(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2305(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2319(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2219(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2222(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2228(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2231(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2243(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2301(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2304(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2310(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2313(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2327(span)
#: doc/reference/en/Test/Unit/Collector/ObjectSpace.html:272(span)
#: doc/reference/en/Test/Unit/Collector/ObjectSpace.html:273(span)
#: doc/reference/en/Test/Unit/Collector/ObjectSpace.html:274(span)
@@ -23380,102 +23425,102 @@ msgstr ""
msgid "klass"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2213(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2214(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2217(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2218(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2232(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2233(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2295(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2296(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2299(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2300(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2316(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2317(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2221(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2222(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2225(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2226(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2240(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2241(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2303(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2304(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2307(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2308(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2324(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2325(span)
msgid "klasses"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2215(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2223(span)
msgid "The first parameter to assert_instance_of should be"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2216(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2224(span)
msgid "a Class or an Array of Class."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2223(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2305(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2231(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2234(span)
#: doc/reference/en/Test/Unit/Assertions.html:2313(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2321(span)
msgid "klass_message"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2227(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2235(span)
msgid "<?> expected to be an instance of ? but was <?>."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2233(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2317(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2241(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2325(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:783(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:786(span)
msgid "any?"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2255(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:2263(pre)
msgid ""
"262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 "
"281 282 283 284 285 286 287 288 289 290 291 292"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2291(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2299(span)
msgid "# File 'lib/test/unit/assertions.rb', line 262"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2297(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2305(span)
msgid "The first parameter to assert_kind_of should be"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2298(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2306(span)
msgid "a kind_of Module or an Array of a kind_of Module."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2300(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2302(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2317(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2319(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2959(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3272(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3759(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2308(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2310(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2325(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2327(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2967(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3280(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3767(span)
#: doc/reference/en/Test/Unit/TestCase.html:1924(span)
msgid "kind_of?"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2309(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2317(span)
msgid "<?> expected to be kind_of\\\\?\\n"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2310(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2318(span)
msgid "? but was\\n"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2330(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2338(p)
msgid "- ( ) (pattern, string, message = \"\")"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2339(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:2347(pre)
msgid "350 351 352 353 354 355 356 357 358 359 360 361"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2356(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2364(span)
msgid "# File 'lib/test/unit/assertions.rb', line 350"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2358(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2360(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2362(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2364(span)
#: doc/reference/en/Test/Unit/Assertions.html:2366(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2367(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2368(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2370(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2372(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2374(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2375(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:163(strong)
#: doc/reference/en/Test/Unit/Collector/Dir.html:496(strong)
#: doc/reference/en/Test/Unit/Collector/Dir.html:524(span)
@@ -23485,10 +23530,10 @@ msgstr ""
msgid "pattern"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2362(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2436(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2807(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3678(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2370(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2444(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2815(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3686(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2223(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2229(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2238(span)
@@ -23501,365 +23546,365 @@ msgstr ""
msgid "Regexp"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2362(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2370(span)
msgid "escape"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2366(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2374(span)
msgid "<?> expected to be =~\\n<?>."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2376(p)
-#: doc/reference/en/Test/Unit/Assertions.html:2822(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2384(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2830(p)
msgid "- ( ) (object, message = \"\")"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2385(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:2393(pre)
msgid "244 245 246 247 248 249"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2396(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2404(span)
msgid "# File 'lib/test/unit/assertions.rb', line 244"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2400(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2408(span)
msgid "<?> expected to be nil."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2410(p)
-#: doc/reference/en/Test/Unit/Assertions.html:2778(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2418(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2786(p)
msgid "- ( ) (regexp, string, message = \"\")"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2419(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:2427(pre)
msgid "519 520 521 522 523 524 525 526"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2432(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2440(span)
msgid "# File 'lib/test/unit/assertions.rb', line 519"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2434(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2436(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2439(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2805(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2807(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2812(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2442(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2444(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2447(span)
#: doc/reference/en/Test/Unit/Assertions.html:2813(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2815(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2820(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2821(span)
msgid "regexp"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2437(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2445(span)
msgid "The first argument to assert_no_match"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2438(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2809(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2446(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2817(span)
msgid "should be a Regexp."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2457(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2465(p)
msgid "Passes if ! .const_defined?( )"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2473(pre)
-msgid "1119 1120 1121 1122 1123 1124 1125 1126 1127 1128"
+#: doc/reference/en/Test/Unit/Assertions.html:2481(pre)
+msgid "1123 1124 1125 1126 1127 1128 1129 1130 1131 1132"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2488(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1119"
+#: doc/reference/en/Test/Unit/Assertions.html:2496(span)
+msgid "# File 'lib/test/unit/assertions.rb', line 1123"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2493(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2501(span)
msgid "!<?>.const_defined\\\\?(<?>) expected."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2535(pre)
-msgid "1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346"
+#: doc/reference/en/Test/Unit/Assertions.html:2543(pre)
+msgid "1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2552(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1335"
+#: doc/reference/en/Test/Unit/Assertions.html:2560(span)
+msgid "# File 'lib/test/unit/assertions.rb', line 1339"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2559(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2567(span)
msgid "<?> expected to not be empty."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2572(p)
-#: doc/reference/en/Test/Unit/Assertions.html:2974(p)
-#: doc/reference/en/Test/Unit/Assertions.html:3774(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2580(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2982(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3782(p)
msgid "- ( ) (expected, actual, message = \"\")"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2581(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:2589(pre)
msgid "472 473 474 475"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2590(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2598(span)
msgid "# File 'lib/test/unit/assertions.rb', line 472"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2593(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2601(span)
msgid "<?> expected to be != to\\n<?>."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2611(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:2619(pre)
msgid "644 645 646 647 648 649 650 651 652 653 654 655 656 657 658"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2631(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2639(span)
msgid "# File 'lib/test/unit/assertions.rb', line 644"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2642(span)
-#: doc/reference/en/Test/Unit/Assertions.html:2698(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2650(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2706(span)
msgid ":negative_assertion"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2663(pre)
-msgid "772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789"
+#: doc/reference/en/Test/Unit/Assertions.html:2671(pre)
+msgid "776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2686(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 772"
+#: doc/reference/en/Test/Unit/Assertions.html:2694(span)
+msgid "# File 'lib/test/unit/assertions.rb', line 776"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2739(pre)
-msgid "1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300"
+#: doc/reference/en/Test/Unit/Assertions.html:2747(pre)
+msgid "1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2757(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1288"
+#: doc/reference/en/Test/Unit/Assertions.html:2765(span)
+msgid "# File 'lib/test/unit/assertions.rb', line 1292"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2764(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2772(span)
msgid "<?> expected to not include\\n<?>."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2787(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:2795(pre)
msgid "497 498 499 500 501 502 503 504 505 506 507"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2803(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2811(span)
msgid "# File 'lib/test/unit/assertions.rb', line 497"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2808(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2816(span)
msgid "<REGEXP> in assert_not_match(<REGEXP>, ...)"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2811(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2819(span)
msgid "<?> expected to not match\\n<?>."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2831(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:2839(pre)
msgid "484 485 486 487"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2840(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2848(span)
msgid "# File 'lib/test/unit/assertions.rb', line 484"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2843(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2851(span)
msgid "<?> expected to not be nil."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2852(p)
-#: doc/reference/en/Test/Unit/Assertions.html:3405(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2860(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3413(p)
msgid "- ( ) (object, predicate, message = nil)"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2877(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:2885(pre)
msgid ""
-"1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172"
+"1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2897(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1158"
+#: doc/reference/en/Test/Unit/Assertions.html:2905(span)
+msgid "# File 'lib/test/unit/assertions.rb', line 1162"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2904(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2912(span)
msgid "<?>.? is false value expected but was\\n"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2920(p)
-#: doc/reference/en/Test/Unit/Assertions.html:3720(p)
+#: doc/reference/en/Test/Unit/Assertions.html:2928(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3728(p)
msgid "- ( ) (object, method, message = \"\")"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2929(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:2937(pre)
msgid "326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2950(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2958(span)
msgid "# File 'lib/test/unit/assertions.rb', line 326"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2955(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3755(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2963(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3763(span)
msgid "<?>.kind_of\\\\?(Symbol) or\\n"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2956(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3756(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2964(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3764(span)
msgid "<?>.respond_to\\\\?(:to_str) expected"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2959(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3272(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3759(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3946(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2967(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3280(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3767(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3954(span)
msgid "Symbol"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2959(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3272(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3759(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2967(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3280(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3767(span)
msgid ":to_str"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2962(span)
+#: doc/reference/en/Test/Unit/Assertions.html:2970(span)
msgid "!<?>.respond_to\\\\?(?) expected\\n"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2983(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:2991(pre)
msgid "455 456 457 458 459 460 461 462 463"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:2997(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3005(span)
msgid "# File 'lib/test/unit/assertions.rb', line 455"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3001(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3009(span)
msgid ""
"<?> with id <?> expected to not be equal\\\\? to <?> with "
"id <?>."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3006(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3806(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3014(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3814(span)
msgid "equal?"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3014(p)
-#: doc/reference/en/Test/Unit/Assertions.html:3814(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3022(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3822(p)
msgid "- ( ) (send_array, message = nil)"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3025(tt)
-#: doc/reference/en/Test/Unit/Assertions.html:3083(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3085(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3088(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3033(tt)
+#: doc/reference/en/Test/Unit/Assertions.html:3091(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3093(span)
#: doc/reference/en/Test/Unit/Assertions.html:3096(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3858(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3860(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3863(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3104(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3866(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3868(span)
#: doc/reference/en/Test/Unit/Assertions.html:3871(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3879(span)
msgid "send_array"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3025(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3033(p)
msgid " is composed of:"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3027(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3035(p)
msgid "A receiver"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3029(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3037(p)
msgid "A method"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3031(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3039(p)
msgid "Arguments to the method"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3036(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3037(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3044(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3045(span)
msgid ":member?"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3037(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3045(span)
#: doc/reference/en/Test/Unit/UI/Console/OutputLevel.html:112(span)
#: doc/reference/en/Test/Unit/Color.html:905(span)
#: doc/reference/en/Test/Unit/Color.html:917(span)
msgid "4"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3048(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:3056(pre)
msgid ""
-"923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 "
-"942 943 944 945 946 947 948 949 950"
+"927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 "
+"946 947 948 949 950 951 952 953 954"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3081(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 923"
+#: doc/reference/en/Test/Unit/Assertions.html:3089(span)
+msgid "# File 'lib/test/unit/assertions.rb', line 927"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3086(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3094(span)
msgid "assert_not_send requires an array"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3087(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3862(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3095(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3870(span)
msgid "of send information"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3088(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3863(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3096(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3871(span)
msgid ":>="
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3089(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3097(span)
msgid "assert_not_send requires at least a receiver"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3090(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3865(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3098(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3873(span)
msgid "and a message name"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3092(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3100(span)
msgid ""
"<?> expected to respond to <?(*?)> with not a true value but was "
"<?>."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3096(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3101(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3106(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3871(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3876(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3881(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3104(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3109(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3114(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3879(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3884(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3889(span)
msgid "receiver"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3096(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3102(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3106(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3871(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3877(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3881(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3104(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3110(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3114(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3879(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3885(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3889(span)
msgid "message_name"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3117(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3125(p)
#: doc/reference/en/Test/Unit/Diff/UTF8Line.html:474(p)
msgid "- ( ) (*args)"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3126(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:3134(pre)
msgid ""
"413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 "
"432 433 434 435"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3154(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3162(span)
msgid "# File 'lib/test/unit/assertions.rb', line 413"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3158(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3166(span)
#: doc/reference/en/Test/Unit/Collector/XML/Listener.html:468(span)
#: doc/reference/en/Test/Unit/Collector/XML/Listener.html:550(span)
#: doc/reference/en/Test/Unit/Collector/XML/Listener.html:566(span)
@@ -23867,7 +23912,7 @@ msgstr ""
msgid "last"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3159(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3167(span)
#: doc/reference/en/Test/Unit/Collector/XML/Listener.html:458(span)
#: doc/reference/en/Test/Unit/Collector/XML/Listener.html:459(span)
#: doc/reference/en/Test/Unit/Collector/XML/Listener.html:460(span)
@@ -23875,51 +23920,51 @@ msgstr ""
msgid "pop"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3164(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3169(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3504(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3505(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3510(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3571(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3572(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3578(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3172(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3177(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3512(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3513(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3518(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3579(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3580(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3586(span)
msgid "assert_exception_helper"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3168(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3176(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:675(span)
msgid "&&"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3170(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3171(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3332(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3335(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3391(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3394(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3178(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3179(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3340(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3343(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3399(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3402(span)
msgid "failure_message"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3170(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3178(span)
msgid "Exception raised:\\n?"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3185(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3193(p)
msgid "- ( ) (message = \"\", &proc)"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3194(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:3202(pre)
msgid "594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3216(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3224(span)
msgid "# File 'lib/test/unit/assertions.rb', line 594"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3218(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3222(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3941(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3955(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3226(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3230(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3949(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3963(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2255(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2257(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2267(span)
@@ -23929,22 +23974,22 @@ msgstr ""
msgid "proc"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3220(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3228(span)
msgid "Should have passed a block to assert_nothing_thrown"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3224(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3963(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3232(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3971(span)
#: doc/reference/en/Test/Unit/TestCase.html:313(a)
msgid "UncaughtThrow"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3225(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3229(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3964(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3965(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3969(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3233(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3237(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3972(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3973(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3977(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:223(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:224(span)
#: doc/reference/en/Test/Unit/Diff/UnifiedDiffer.html:226(span)
@@ -23962,89 +24007,89 @@ msgstr ""
msgid "tag"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3226(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3965(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3234(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3973(span)
msgid "intern"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3228(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3236(span)
msgid "<?> was thrown when nothing was expected"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3232(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3240(span)
msgid "Expected nothing to be thrown"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3241(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3249(p)
msgid ""
"- ( ) (object1, operator, object2, message = "
"\"\")"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3250(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:3258(pre)
msgid "391 392 393 394 395 396 397 398 399 400 401 402"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3267(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3275(span)
msgid "# File 'lib/test/unit/assertions.rb', line 391"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3269(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3273(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3278(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3277(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3281(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3286(span)
msgid "object1"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3269(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3273(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3278(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3277(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3281(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3286(span)
msgid "object2"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3271(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3279(span)
msgid ""
"<?>\\ngiven as the operator for #assert_operator must be a Symbol or "
"#respond_to\\\\?(:to_str)."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3274(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3282(span)
msgid "<?> expected to be ? <?>."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3287(p)
-#: doc/reference/en/Test/Unit/Assertions.html:3346(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3295(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3354(p)
msgid "- ( ) (path, message = nil)"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3300(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3360(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3308(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3368(span)
msgid "/tmp"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3301(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3361(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3309(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3369(span)
msgid "/bin/sh"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3302(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3359(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3310(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3367(span)
msgid "/nonexistent"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3313(pre)
-msgid "1229 1230 1231 1232 1233 1234 1235 1236 1237 1238"
+#: doc/reference/en/Test/Unit/Assertions.html:3321(pre)
+msgid "1233 1234 1235 1236 1237 1238 1239 1240 1241 1242"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3328(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1229"
+#: doc/reference/en/Test/Unit/Assertions.html:3336(span)
+msgid "# File 'lib/test/unit/assertions.rb', line 1233"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3333(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3341(span)
msgid "<?> expected to exist"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3336(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3395(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3344(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3403(span)
#: doc/reference/en/Test/Unit/Collector/Dir.html:386(span)
#: doc/reference/en/Test/Unit/Collector/XML.html:205(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:948(span)
@@ -24054,326 +24099,326 @@ msgstr ""
msgid "File"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3336(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3395(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3344(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3403(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:948(span)
msgid "exist?"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3372(pre)
-msgid "1247 1248 1249 1250 1251 1252 1253 1254 1255 1256"
+#: doc/reference/en/Test/Unit/Assertions.html:3380(pre)
+msgid "1251 1252 1253 1254 1255 1256 1257 1258 1259 1260"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3387(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1247"
+#: doc/reference/en/Test/Unit/Assertions.html:3395(span)
+msgid "# File 'lib/test/unit/assertions.rb', line 1251"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3392(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3400(span)
msgid "<?> expected to not exist"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3430(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:3438(pre)
msgid ""
-"1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150"
+"1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3450(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1136"
+#: doc/reference/en/Test/Unit/Assertions.html:3458(span)
+msgid "# File 'lib/test/unit/assertions.rb', line 1140"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3457(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3465(span)
msgid "<?>.? is true value expected but was\\n"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3473(p)
-#: doc/reference/en/Test/Unit/Assertions.html:3521(p)
-#: doc/reference/en/Test/Unit/Assertions.html:3692(p)
-#: doc/reference/en/Test/Unit/Assertions.html:3980(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3481(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3529(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3700(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3988(p)
msgid "- ( ) (*args, &block)"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3482(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:3490(pre)
msgid "148 149 150 151 152 153 154 155 156 157 158 159 160"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3500(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3508(span)
msgid "# File 'lib/test/unit/assertions.rb', line 148"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3503(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3513(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3570(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3581(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3511(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3521(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3578(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3589(span)
msgid "assert_expected_exception"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3503(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3504(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3570(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3571(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3511(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3512(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3578(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3579(span)
msgid "_args"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3507(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3515(span)
msgid "<?> exception expected but was\\n?"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3513(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3581(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3521(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3589(span)
msgid "_assert_raise"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3535(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3543(span)
msgid "SystemCallError"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3536(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3544(span)
msgid "Errno"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3536(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3544(span)
msgid "EACCES"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3548(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:3556(pre)
msgid "180 181 182 183 184 185 186 187 188 189 190 191 192 193"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3567(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3575(span)
msgid "# File 'lib/test/unit/assertions.rb', line 180"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3574(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3582(span)
msgid "<?> family exception expected"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3575(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3583(span)
msgid "but was\\n?"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3578(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3586(span)
msgid ":kind_of?"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3589(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3597(p)
msgid "- ( ) (expected, message = nil)"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3604(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3612(span)
msgid "exc"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3604(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3612(span)
#: doc/reference/en/Test/Unit/Data/ClassMethods.html:262(span)
msgid "/i"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3605(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3613(span)
msgid "EXCEPTION"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3617(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:3625(pre)
msgid ""
-"1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 "
-"1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 "
-"1094"
+"1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 "
+"1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 "
+"1098"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3653(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1064"
+#: doc/reference/en/Test/Unit/Assertions.html:3661(span)
+msgid "# File 'lib/test/unit/assertions.rb', line 1068"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3658(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3666(span)
msgid "<?> exception message expected"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3659(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3667(span)
msgid "but none was thrown."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3675(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3683(span)
msgid "<?> exception message expected but was\\n"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3676(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3684(span)
msgid "<?>.?"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3701(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:3709(pre)
msgid "168 169 170"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3709(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3717(span)
msgid "# File 'lib/test/unit/assertions.rb', line 168"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3729(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:3737(pre)
msgid "301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3750(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3758(span)
msgid "# File 'lib/test/unit/assertions.rb', line 301"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3762(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3770(span)
msgid "<?>.respond_to\\\\?(?) expected\\n"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3783(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:3791(pre)
msgid "372 373 374 375 376 377 378 379 380"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3797(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3805(span)
msgid "# File 'lib/test/unit/assertions.rb', line 372"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3801(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3809(span)
msgid ""
"<?> with id <?> expected to be equal\\\\? to <?> with id "
"<?>."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3823(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:3831(pre)
msgid ""
-"883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 "
-"902 903 904 905 906 907 908 909 910"
+"887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 "
+"906 907 908 909 910 911 912 913 914"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3856(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 883"
+#: doc/reference/en/Test/Unit/Assertions.html:3864(span)
+msgid "# File 'lib/test/unit/assertions.rb', line 887"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3861(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3869(span)
msgid "assert_send requires an array"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3864(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3872(span)
msgid "assert_send requires at least a receiver"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3867(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3875(span)
msgid ""
"<?> expected to respond to <?(*?)> with a true value but was "
"<?>."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3892(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3900(p)
msgid ""
"- ( ) (expected_object, message = \"\", &"
"proc)"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3901(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:3909(pre)
msgid ""
"543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 "
"562 563 564 565 566 567 568 569 570 571 572 573 574 575"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3939(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3947(span)
msgid "# File 'lib/test/unit/assertions.rb', line 543"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3941(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3946(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3949(span)
#: doc/reference/en/Test/Unit/Assertions.html:3954(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3960(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3969(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3962(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3968(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3977(span)
msgid "expected_object"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3944(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3954(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3952(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3962(span)
msgid "catch"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3945(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3953(span)
msgid "TypeError"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3947(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3955(span)
msgid ""
"assert_throws expects the symbol that should be thrown for its first argument"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3949(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3957(span)
msgid "Should have passed a block to assert_throw."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3952(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3956(span)
-#: doc/reference/en/Test/Unit/Assertions.html:3961(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3960(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3964(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3969(span)
msgid "caught"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3959(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3967(span)
msgid "<?> should have been thrown."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3967(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3975(span)
msgid "<?> expected to be thrown but\\n"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3968(span)
+#: doc/reference/en/Test/Unit/Assertions.html:3976(span)
msgid "<?> was thrown."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:3991(p)
+#: doc/reference/en/Test/Unit/Assertions.html:3999(p)
msgid "Will be deprecated in 1.9, and removed in 2.0."
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:4002(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:4010(pre)
msgid "581 582 583"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:4010(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4018(span)
msgid "# File 'lib/test/unit/assertions.rb', line 581"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:4035(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4043(span)
msgid ":true"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:4046(pre)
-msgid "974 975 976 977 978 979 980 981 982"
+#: doc/reference/en/Test/Unit/Assertions.html:4054(pre)
+msgid "978 979 980 981 982 983 984 985 986"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:4060(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 974"
+#: doc/reference/en/Test/Unit/Assertions.html:4068(span)
+msgid "# File 'lib/test/unit/assertions.rb', line 978"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:4065(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4073(span)
msgid "<true> expected but was\\n<?>"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:4077(p)
+#: doc/reference/en/Test/Unit/Assertions.html:4085(p)
msgid "- ( ) (head, template = nil, *arguments)"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:4086(pre)
-msgid "1353 1354 1355 1356"
+#: doc/reference/en/Test/Unit/Assertions.html:4094(pre)
+msgid "1357 1358 1359 1360"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:4095(span)
-msgid "# File 'lib/test/unit/assertions.rb', line 1353"
+#: doc/reference/en/Test/Unit/Assertions.html:4103(span)
+msgid "# File 'lib/test/unit/assertions.rb', line 1357"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:4098(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4106(span)
msgid "&&="
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:4107(p)
+#: doc/reference/en/Test/Unit/Assertions.html:4115(p)
msgid "- ( ) (message = \"Flunked\")"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:4116(pre)
+#: doc/reference/en/Test/Unit/Assertions.html:4124(pre)
msgid "444 445 446"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:4124(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4132(span)
msgid "# File 'lib/test/unit/assertions.rb', line 444"
msgstr ""
-#: doc/reference/en/Test/Unit/Assertions.html:4126(span)
+#: doc/reference/en/Test/Unit/Assertions.html:4134(span)
msgid "Flunked"
msgstr ""
@@ -24846,6 +24891,11 @@ msgstr ""
msgid "update_to_indexes"
msgstr ""
+#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:306(pre)
+#: doc/reference/en/Test/Unit/Error.html:626(pre)
+msgid "35 36 37"
+msgstr ""
+
#: doc/reference/en/Test/Unit/Diff/SequenceMatcher.html:314(span)
msgid "# File 'lib/test/unit/diff.rb', line 35"
msgstr ""
@@ -26751,7 +26801,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/UI/XML/TestRunner.html:37(a)
#: doc/reference/en/Test/Unit/UI/XML.html:39(span)
#: doc/reference/en/Test/Unit/UI.html:86(a)
-#: doc/reference/en/file.news.html:169(span)
+#: doc/reference/en/file.news.html:187(span)
#: doc/reference/en/class_list.html:42(a) doc/reference/en/_index.html:879(a)
#: doc/reference/en/_index.html:886(a)
msgid "XML"
@@ -28935,9 +28985,9 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:143(p)
#: doc/reference/en/Test/Unit/TestCase.html:1539(p)
#: doc/reference/en/Test/Unit/TestCase.html:1615(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2009(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2474(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2612(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2017(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2494(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2644(p)
msgid "Here is a call order:"
msgstr ""
@@ -29088,8 +29138,8 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1370(strong)
#: doc/reference/en/Test/Unit/TestCase.html:1406(span)
#: doc/reference/en/Test/Unit/TestCase.html:1780(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2116(strong)
-#: doc/reference/en/Test/Unit/TestCase.html:2147(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2128(strong)
+#: doc/reference/en/Test/Unit/TestCase.html:2159(span)
#: doc/reference/en/method_list.html:1172(a)
msgid "description"
msgstr ""
@@ -29189,9 +29239,9 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:753(strong)
#: doc/reference/en/Test/Unit/TestCase.html:1926(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2048(strong)
-#: doc/reference/en/Test/Unit/TestCase.html:2077(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2284(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2060(strong)
+#: doc/reference/en/Test/Unit/TestCase.html:2089(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2296(span)
msgid "data_label"
msgstr ""
@@ -29204,7 +29254,7 @@ msgid "Returns a description for the test."
msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:834(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2165(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2177(p)
msgid "Returns elapsed time for the test was ran."
msgstr ""
@@ -29220,12 +29270,12 @@ msgid ""
msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:883(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2204(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2216(p)
msgid "Returns whether the test is interrupted."
msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:906(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2256(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2268(p)
msgid ""
"Returns a human-readable name for the specific test that this instance of "
"TestCase represents."
@@ -29236,8 +29286,8 @@ msgid "Returns whether this individual test passed or not."
msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:939(strong)
-#: doc/reference/en/Test/Unit/TestCase.html:2350(strong)
-#: doc/reference/en/Test/Unit/TestCase.html:2405(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2362(strong)
+#: doc/reference/en/Test/Unit/TestCase.html:2417(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerUtilities.html:116(strong)
#: doc/reference/en/Test/Unit/UI/TestRunnerUtilities.html:172(strong)
#: doc/reference/en/Test/Unit/UI/TestRunnerUtilities.html:200(span)
@@ -29263,7 +29313,7 @@ msgid "- (Object) (result)"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:953(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2357(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2369(p)
msgid ""
"Runs the individual test method represented by this instance of the fixture, "
"collecting statistics, failures and errors in result."
@@ -29274,7 +29324,7 @@ msgid "Called before every test method runs."
msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1021(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2548(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2572(p)
msgid "Returns a Time at the test was started."
msgstr ""
@@ -29283,13 +29333,13 @@ msgid "Called after every test method runs."
msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1067(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2658(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2694(p)
msgid "Overridden to return #name."
msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1076(strong)
-#: doc/reference/en/Test/Unit/TestCase.html:2690(strong)
-#: doc/reference/en/Test/Unit/TestCase.html:2742(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2726(strong)
+#: doc/reference/en/Test/Unit/TestCase.html:2778(span)
msgid "valid?"
msgstr ""
@@ -29710,16 +29760,16 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1267(span)
#: doc/reference/en/Test/Unit/TestCase.html:1966(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2078(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2187(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2239(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2283(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2340(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2408(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2417(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2426(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2570(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2745(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2090(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2199(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2251(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2295(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2352(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2420(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2429(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2438(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2594(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2781(span)
msgid "@internal_data"
msgstr ""
@@ -29743,7 +29793,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1445(span)
#: doc/reference/en/Test/Unit/TestCase.html:1490(span)
#: doc/reference/en/Test/Unit/TestCase.html:1965(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2742(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2778(span)
msgid "# :nodoc:"
msgstr ""
@@ -29779,7 +29829,7 @@ msgid "target"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1407(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2148(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2160(span)
msgid ":description"
msgstr ""
@@ -30041,11 +30091,11 @@ msgid "# File 'lib/test/unit/testcase.rb', line 223"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1910(pre)
-msgid "489 490 491 492 493 494"
+msgid "519 520 521 522 523 524"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1921(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 489"
+msgid "# File 'lib/test/unit/testcase.rb', line 519"
msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1944(p)
@@ -30074,288 +30124,315 @@ msgstr ""
#: doc/reference/en/Test/Unit/TestCase.html:1989(pre)
msgid ""
"class TestMyClass < Test::Unit::TestCase def cleanup ... end cleanup def "
-"my_cleanup1 ... end cleanup def my_cleanup2 ... end def test_my_class ... "
-"end end"
+"my_cleanup1 ... end cleanup do ... # cleanup callback1 end cleanup def "
+"my_cleanup2 ... end cleanup do ... # cleanup callback2 end def "
+"test_my_class ... end end"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2011(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2482(p)
-#: doc/reference/en/Test/Unit/TestCase.html:2614(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2019(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2506(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2646(p)
msgid "test_my_class"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2013(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2021(p)
+msgid "cleanup callback2"
+msgstr ""
+
+#: doc/reference/en/Test/Unit/TestCase.html:2023(p)
msgid "my_cleanup2"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2015(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2025(p)
+msgid "cleanup callback1"
+msgstr ""
+
+#: doc/reference/en/Test/Unit/TestCase.html:2027(p)
msgid "my_cleanup1"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2029(pre)
-msgid "413 414"
+#: doc/reference/en/Test/Unit/TestCase.html:2041(pre)
+msgid "433 434"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2036(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 413"
+#: doc/reference/en/Test/Unit/TestCase.html:2048(span)
+msgid "# File 'lib/test/unit/testcase.rb', line 433"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2055(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2067(p)
msgid ""
"Returns a label of test data for the test. If the test isn't associated with "
"any test data, it returns ."
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2067(pre)
-msgid "460 461 462"
+#: doc/reference/en/Test/Unit/TestCase.html:2079(pre)
+msgid "490 491 492"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2075(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 460"
+#: doc/reference/en/Test/Unit/TestCase.html:2087(span)
+msgid "# File 'lib/test/unit/testcase.rb', line 490"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2095(pre)
-msgid "449 450 451"
+#: doc/reference/en/Test/Unit/TestCase.html:2107(pre)
+msgid "479 480 481"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2103(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 449"
+#: doc/reference/en/Test/Unit/TestCase.html:2115(span)
+msgid "# File 'lib/test/unit/testcase.rb', line 479"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2106(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2118(span)
msgid "No tests were specified"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2123(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2135(p)
msgid ""
"Returns a description for the test. A description will be associated by "
"Test::Unit::TestCase.test or Test::Unit::TestCase.description."
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2126(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2138(p)
msgid "Returns a name for the test for no description test."
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2137(pre)
-msgid "479 480 481"
+#: doc/reference/en/Test/Unit/TestCase.html:2149(pre)
+msgid "509 510 511"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2145(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 479"
+#: doc/reference/en/Test/Unit/TestCase.html:2157(span)
+msgid "# File 'lib/test/unit/testcase.rb', line 509"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2176(pre)
-msgid "502 503 504"
+#: doc/reference/en/Test/Unit/TestCase.html:2188(pre)
+msgid "532 533 534"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2184(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 502"
+#: doc/reference/en/Test/Unit/TestCase.html:2196(span)
+msgid "# File 'lib/test/unit/testcase.rb', line 532"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2228(pre)
-msgid "507 508 509"
+#: doc/reference/en/Test/Unit/TestCase.html:2240(pre)
+msgid "537 538 539"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2236(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 507"
+#: doc/reference/en/Test/Unit/TestCase.html:2248(span)
+msgid "# File 'lib/test/unit/testcase.rb', line 537"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2268(pre)
-msgid "466 467 468 469 470 471 472"
+#: doc/reference/en/Test/Unit/TestCase.html:2280(pre)
+msgid "496 497 498 499 500 501 502"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2280(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 466"
+#: doc/reference/en/Test/Unit/TestCase.html:2292(span)
+msgid "# File 'lib/test/unit/testcase.rb', line 496"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2284(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2296(span)
msgid "]("
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2304(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2316(p)
msgid ""
"Returns whether this individual test passed or not. Primarily for use in "
"teardown so that artifacts can be left behind if the test fails."
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2329(pre)
-msgid "514 515 516"
+#: doc/reference/en/Test/Unit/TestCase.html:2341(pre)
+msgid "544 545 546"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2337(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 514"
+#: doc/reference/en/Test/Unit/TestCase.html:2349(span)
+msgid "# File 'lib/test/unit/testcase.rb', line 544"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2348(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2360(p)
msgid "- ( ) (result)"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2369(pre)
+#: doc/reference/en/Test/Unit/TestCase.html:2381(pre)
msgid ""
"318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 "
"337 338 339 340 341 342 343 344 345 346"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2403(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2415(span)
msgid "# File 'lib/test/unit/testcase.rb', line 318"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2407(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2419(span)
msgid "@_result"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2409(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2421(span)
#: doc/reference/en/Test/Unit/UI/TestRunnerMediator.html:351(span)
msgid "STARTED"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2410(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2422(span)
msgid "STARTED_OBJECT"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2412(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2424(span)
msgid "run_setup"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2413(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2425(span)
msgid "run_test"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2414(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2426(span)
msgid "run_cleanup"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2418(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2423(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2430(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2435(span)
msgid "handle_exception"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2418(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2423(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2430(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2435(span)
msgid "$!"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2421(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2433(span)
msgid "run_teardown"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2429(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2441(span)
msgid "FINISHED_OBJECT"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2431(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2443(span)
msgid "# @_result = nil # For test-spec's after_all :<"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2449(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2461(p)
msgid ""
"Called before every test method runs. Can be used to set up fixture "
"information."
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2452(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2464(p)
msgid "You can add additional setup tasks by the following code:"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2454(pre)
+#: doc/reference/en/Test/Unit/TestCase.html:2466(pre)
msgid ""
"class TestMyClass < Test::Unit::TestCase def setup ... end setup def "
-"my_setup1 ... end setup def my_setup2 ... end def test_my_class ... end end"
+"my_setup1 ... end setup do ... # setup callback1 end setup def my_setup2 ... "
+"end setup do ... # setup callback2 end def test_my_class ... end end"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2478(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2498(p)
msgid "my_setup1"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2480(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2500(p)
+msgid "setup callback1"
+msgstr ""
+
+#: doc/reference/en/Test/Unit/TestCase.html:2502(p)
msgid "my_setup2"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2494(pre)
-msgid "378 379"
+#: doc/reference/en/Test/Unit/TestCase.html:2504(p)
+msgid "setup callback2"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2501(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 378"
+#: doc/reference/en/Test/Unit/TestCase.html:2518(pre)
+msgid "388 389"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2520(pre)
-msgid "453 454 455"
+#: doc/reference/en/Test/Unit/TestCase.html:2525(span)
+msgid "# File 'lib/test/unit/testcase.rb', line 388"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2528(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 453"
+#: doc/reference/en/Test/Unit/TestCase.html:2544(pre)
+msgid "483 484 485"
+msgstr ""
+
+#: doc/reference/en/Test/Unit/TestCase.html:2552(span)
+msgid "# File 'lib/test/unit/testcase.rb', line 483"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2559(pre)
-msgid "497 498 499"
+#: doc/reference/en/Test/Unit/TestCase.html:2583(pre)
+msgid "527 528 529"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2567(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 497"
+#: doc/reference/en/Test/Unit/TestCase.html:2591(span)
+msgid "# File 'lib/test/unit/testcase.rb', line 527"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2587(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2611(p)
msgid ""
"Called after every test method runs. Can be used to tear down fixture "
"information."
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2590(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2614(p)
msgid "You can add additional teardown tasks by the following code:"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2592(pre)
+#: doc/reference/en/Test/Unit/TestCase.html:2616(pre)
msgid ""
"class TestMyClass < Test::Unit::TestCase def teardown ... end teardown "
-"def my_teardown1 ... end teardown def my_teardown2 ... end def "
+"def my_teardown1 ... end teardown do ... # teardown callback1 end teardown "
+"def my_teardown2 ... end teardown do ... # teardown callback2 end def "
"test_my_class ... end end"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2616(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2648(p)
+msgid "teardown callback2"
+msgstr ""
+
+#: doc/reference/en/Test/Unit/TestCase.html:2650(p)
msgid "my_teardown2"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2618(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2652(p)
+msgid "teardown callback1"
+msgstr ""
+
+#: doc/reference/en/Test/Unit/TestCase.html:2654(p)
msgid "my_teardown1"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2632(pre)
-msgid "446 447"
+#: doc/reference/en/Test/Unit/TestCase.html:2668(pre)
+msgid "476 477"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2639(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 446"
+#: doc/reference/en/Test/Unit/TestCase.html:2675(span)
+msgid "# File 'lib/test/unit/testcase.rb', line 476"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2669(pre)
-msgid "484 485 486"
+#: doc/reference/en/Test/Unit/TestCase.html:2705(pre)
+msgid "514 515 516"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2677(span)
-msgid "# File 'lib/test/unit/testcase.rb', line 484"
+#: doc/reference/en/Test/Unit/TestCase.html:2713(span)
+msgid "# File 'lib/test/unit/testcase.rb', line 514"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2697(p)
+#: doc/reference/en/Test/Unit/TestCase.html:2733(p)
msgid "Returns the test is valid test. It is used in internal."
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2721(pre)
+#: doc/reference/en/Test/Unit/TestCase.html:2757(pre)
msgid "300 301 302 303 304 305 306 307 308 309 310 311 312 313"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2740(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2776(span)
msgid "# File 'lib/test/unit/testcase.rb', line 300"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2744(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2746(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2748(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2780(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2782(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2784(span)
msgid "test_method"
msgstr ""
-#: doc/reference/en/Test/Unit/TestCase.html:2746(span)
-#: doc/reference/en/Test/Unit/TestCase.html:2748(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2782(span)
+#: doc/reference/en/Test/Unit/TestCase.html:2784(span)
msgid "arity"
msgstr ""
@@ -30543,6 +30620,11 @@ msgstr ""
msgid "- ( ) (suite, options = {})"
msgstr ""
+#: doc/reference/en/Test/Unit/UI/TestRunnerUtilities.html:190(pre)
+#: doc/reference/en/Test/Unit/AutoRunner.html:1554(pre)
+msgid "23 24 25"
+msgstr ""
+
#: doc/reference/en/Test/Unit/UI/TestRunnerUtilities.html:198(span)
msgid "# File 'lib/test/unit/ui/testrunnerutilities.rb', line 23"
msgstr ""
@@ -30560,7 +30642,7 @@ msgstr ""
#: doc/reference/en/Test/Unit/UI/TestRunnerUtilities.html:251(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:1740(span)
#: doc/reference/en/Test/Unit/AutoRunner.html:2437(span)
-#: doc/reference/en/file.news.html:62(code)
+#: doc/reference/en/file.news.html:80(code)
msgid "ARGV"
msgstr ""
@@ -31148,11 +31230,11 @@ msgid "A new instance of ColorizedReadableDiffer"
msgstr ""
#: doc/reference/en/Test/Unit/UI/Console/ColorizedReadableDiffer.html:214(pre)
-msgid "431 432 433 434"
+msgid "440 441 442 443"
msgstr ""
#: doc/reference/en/Test/Unit/UI/Console/ColorizedReadableDiffer.html:223(span)
-msgid "# File 'lib/test/unit/ui/console/testrunner.rb', line 431"
+msgid "# File 'lib/test/unit/ui/console/testrunner.rb', line 440"
msgstr ""
#: doc/reference/en/Test/Unit/UI/Console/ColorizedReadableDiffer.html:225(span)
@@ -31185,11 +31267,11 @@ msgid "@runner"
msgstr ""
#: doc/reference/en/Test/Unit/UI/Console/ColorizedReadableDiffer.html:273(pre)
-msgid "436 437 438 439 440 441"
+msgid "445 446 447 448 449 450"
msgstr ""
#: doc/reference/en/Test/Unit/UI/Console/ColorizedReadableDiffer.html:284(span)
-msgid "# File 'lib/test/unit/ui/console/testrunner.rb', line 436"
+msgid "# File 'lib/test/unit/ui/console/testrunner.rb', line 445"
msgstr ""
#: doc/reference/en/Test/Unit/UI/Console/OutputLevel.html:6(title)
@@ -31414,10 +31496,6 @@ msgid ""
" (suite)"
msgstr ""
-#: doc/reference/en/Test/Unit/UI/TestRunnerMediator.html:241(pre)
-msgid "26 27 28"
-msgstr ""
-
#: doc/reference/en/Test/Unit/UI/TestRunnerMediator.html:249(span)
msgid "# File 'lib/test/unit/ui/testrunnermediator.rb', line 26"
msgstr ""
@@ -31758,6 +31836,10 @@ msgstr ""
msgid "# File 'lib/test/unit/error.rb', line 45"
msgstr ""
+#: doc/reference/en/Test/Unit/Error.html:816(pre)
+msgid "31 32 33"
+msgstr ""
+
#: doc/reference/en/Test/Unit/Error.html:824(span)
msgid "# File 'lib/test/unit/error.rb', line 31"
msgstr ""
@@ -32107,6 +32189,12 @@ msgstr ""
msgid "# File 'lib/test/unit/priority.rb', line 36"
msgstr ""
+#: doc/reference/en/Test/Unit/Priority.html:427(pre)
+#: doc/reference/en/Test/Unit/Color.html:492(pre)
+#: doc/reference/en/Test/Unit/AutoRunner.html:1582(pre)
+msgid "27 28 29"
+msgstr ""
+
#: doc/reference/en/Test/Unit/Priority.html:435(span)
msgid "# File 'lib/test/unit/priority.rb', line 27"
msgstr ""
@@ -33209,7 +33297,7 @@ msgid "config"
msgstr ""
#: doc/reference/en/Test/Unit/AutoRunner.html:1968(span)
-#: doc/reference/en/file.news.html:446(span)
+#: doc/reference/en/file.news.html:464(span)
msgid "YAML"
msgstr ""
@@ -33602,9 +33690,8 @@ msgid "assertion_message_class"
msgstr ""
#: doc/reference/en/Test/Unit/AutoRunner.html:2334(span)
-#, fuzzy
msgid "--max-diff-target-string-size=SIZE"
-msgstr "--max-diff-target-string-size¤òÄɲá£"
+msgstr ""
#: doc/reference/en/Test/Unit/AutoRunner.html:2335(span)
msgid "Shows diff if both expected result string size and"
@@ -35102,7 +35189,7 @@ msgid ""
"AssertionFailedError, AutoRunner, Color, ColorScheme, Error, Failure, "
"MixColor, Notification, NotifiedError, Omission, OmittedError, PendedError, "
"Pending, TestCase, TestResult, TestSuite, TestSuiteCreator Constant Summary "
-"VERSION = '2.4.3' Class Method Summary (collapse) + (Object) run=(flag) Set "
+"VERSION = '2.4.4' Class Method Summary (collapse) + (Object) run=(flag) Set "
"true when Test::Unit has run. + (Boolean) run? Already tests have run?. "
"Class Method Details + (Object) run=(flag) Set true when Test::Unit has run. "
"If set to true Test::Unit will not automatically run at exit. 313 314 315 # "
@@ -35139,19 +35226,89 @@ msgid "News"
msgstr "¤ªÃΤ餻"
#: doc/reference/en/file.news.html:58(h2)
-msgid "2.4.3 ? 2011-12-11"
+msgid "2.4.4 ? 2012-1-2"
msgstr ""
-#: doc/reference/en/file.news.html:59(h3)
-#: doc/reference/en/file.news.html:71(h3)
-#: doc/reference/en/file.news.html:76(h3)
-#: doc/reference/en/file.news.html:93(h3)
-#: doc/reference/en/file.news.html:118(h3)
-#: doc/reference/en/file.news.html:133(h3)
+#: doc/reference/en/file.news.html:59(p)
+msgid "It¡Çs a Rails integration improved release."
+msgstr ""
+
+#: doc/reference/en/file.news.html:60(h3)
+#: doc/reference/en/file.news.html:77(h3)
+#: doc/reference/en/file.news.html:89(h3)
+#: doc/reference/en/file.news.html:94(h3)
+#: doc/reference/en/file.news.html:111(h3)
+#: doc/reference/en/file.news.html:136(h3)
+#: doc/reference/en/file.news.html:151(h3)
msgid "Improvements"
msgstr "²þÎÉ"
-#: doc/reference/en/file.news.html:61(li)
+#: doc/reference/en/file.news.html:62(li)
+msgid "[ui][console] Don¡Çt break progress display when a test is failed."
+msgstr ""
+"[ui][¥³¥ó¥½¡¼¥ë] ¥Æ¥¹¥È¤¬¼ºÇÔ¤·¤Æ¤â¥×¥í¥°¥ì¥¹¤Îɽ¼¨¤¬Íð¤ì¤Ê¤¤¤è¤¦¤Ë¤·¤¿¡£"
+
+#: doc/reference/en/file.news.html:63(li)
+msgid ""
+"[ui][console] Added markers betwen a failure detail message in progress to "
+"improve visibility."
+msgstr "[ui][¥³¥ó¥½¡¼¥ë] »ëǧÀ¸þ¾å¤Î¤¿¤á¤Ë¥×¥í¥°¥ì¥¹É½¼¨»þ¤Î¾ÜºÙɽ¼¨¤ÎÁ°¸å¤Ë¥Þ¡¼¥«¡¼¤òÄɲä·¤¿¡£"
+
+#: doc/reference/en/file.news.html:65(li)
+msgid ""
+"[travis] Dropped Ruby 1.8.6 as a test target. [GitHub:#13] [Patch by Josh "
+"Kalderimis]"
+msgstr ""
+"[travis] ¥Æ¥¹¥ÈÂоݤ«¤éRuby 1.8.6¤òºï½ü¡£ [GitHub:#13] [Josh Kalderimis¤µ¤ó¤¬"
+"¥Ñ¥Ã¥Á¤òºîÀ®]"
+
+#: doc/reference/en/file.news.html:67(li)
+msgid ""
+"Supported expected value == 0 case in assert_in_epsilon. [RubyForge#29485] "
+"[Reported by Syver Enstad]"
+msgstr ""
+"assert_in_epsilon¤Ç´üÂÔÃͤ¬0¤Ë¤Ê¤ë¥±¡¼¥¹¤ËÂбþ¡£ [RubyForge#29485] [Syver "
+"Enstad¤µ¤ó¤¬Êó¹ð]"
+
+#: doc/reference/en/file.news.html:69(li)
+msgid "Supported a block style setup/teardown/cleanup."
+msgstr "¥Ö¥í¥Ã¥¯·Á¼°¤Ç¤Îsetup/teardown/cleanup¤ËÂбþ¡£"
+
+#: doc/reference/en/file.news.html:71(h3)
+#: doc/reference/en/file.news.html:84(h3)
+#: doc/reference/en/file.news.html:105(h3)
+#: doc/reference/en/file.news.html:128(h3)
+#: doc/reference/en/file.news.html:145(h3)
+#: doc/reference/en/file.news.html:171(h3)
+#: doc/reference/en/file.news.html:197(li)
+#: doc/reference/en/file.news.html:240(li)
+#: doc/reference/en/file.news.html:256(li)
+#: doc/reference/en/file.news.html:266(li)
+#: doc/reference/en/file.news.html:290(li)
+#: doc/reference/en/file.news.html:319(li)
+#: doc/reference/en/file.news.html:350(li)
+#: doc/reference/en/file.news.html:360(li)
+#: doc/reference/en/file.news.html:385(li)
+#: doc/reference/en/file.news.html:412(li)
+#: doc/reference/en/file.news.html:434(li)
+#: doc/reference/en/file.news.html:468(li) doc/reference/en/index.html:112(h2)
+#: doc/reference/en/file.README.html:112(h2)
+msgid "Thanks"
+msgstr "´¶¼Õ"
+
+#: doc/reference/en/file.news.html:73(li)
+msgid "Josh Kalderimis"
+msgstr "Josh Kalderimis¤µ¤ó"
+
+#: doc/reference/en/file.news.html:74(li)
+msgid "Syver Enstad"
+msgstr "Syver Enstad¤µ¤ó"
+
+#: doc/reference/en/file.news.html:76(h2)
+msgid "2.4.3 ? 2011-12-11"
+msgstr ""
+
+#: doc/reference/en/file.news.html:79(li)
msgid ""
"Improved SimpleCov integration by stopping to modify in "
"auto runner. [GitHub:#12] [Reported by Nikos Dimitrakopoulos]"
@@ -35159,52 +35316,31 @@ msgstr ""
"¼«Æ°¥Æ¥¹¥È¥é¥ó¥Ê¡¼Æâ¤Ç ¤òÊѹ¹¤·¤Ê¤¤¤è¤¦¤Ë¤·¤ÆSimpleCovÏ¢·È¤ò²þ"
"Îɤ·¤¿¡£ [GitHub:#12] [Nikos Dimitrakopoulos¤µ¤ó¤¬Êó¹ð]"
-#: doc/reference/en/file.news.html:64(li)
+#: doc/reference/en/file.news.html:82(li)
msgid "Improved JRuby integration by removing JRuby internal backtrace."
msgstr "JRubyÆâÉô¤Î¥Ð¥Ã¥¯¥È¥ì¡¼¥¹¤òºï½ü¤·¤ÆJRubyÏ¢·È¤ò²þÎɤ·¤¿¡£"
-#: doc/reference/en/file.news.html:66(h3)
-#: doc/reference/en/file.news.html:87(h3)
-#: doc/reference/en/file.news.html:110(h3)
-#: doc/reference/en/file.news.html:127(h3)
-#: doc/reference/en/file.news.html:153(h3)
-#: doc/reference/en/file.news.html:179(li)
-#: doc/reference/en/file.news.html:222(li)
-#: doc/reference/en/file.news.html:238(li)
-#: doc/reference/en/file.news.html:248(li)
-#: doc/reference/en/file.news.html:272(li)
-#: doc/reference/en/file.news.html:301(li)
-#: doc/reference/en/file.news.html:332(li)
-#: doc/reference/en/file.news.html:342(li)
-#: doc/reference/en/file.news.html:367(li)
-#: doc/reference/en/file.news.html:394(li)
-#: doc/reference/en/file.news.html:416(li)
-#: doc/reference/en/file.news.html:450(li) doc/reference/en/index.html:112(h2)
-#: doc/reference/en/file.README.html:112(h2)
-msgid "Thanks"
-msgstr "´¶¼Õ"
-
-#: doc/reference/en/file.news.html:68(li)
+#: doc/reference/en/file.news.html:86(li)
msgid "Nikos Dimitrakopoulos"
msgstr "Nikos Dimitrakopoulos¤µ¤ó"
-#: doc/reference/en/file.news.html:70(h2)
+#: doc/reference/en/file.news.html:88(h2)
msgid "2.4.2 ? 2011-11-26"
msgstr ""
-#: doc/reference/en/file.news.html:73(code)
+#: doc/reference/en/file.news.html:91(code)
msgid "--name"
msgstr ""
-#: doc/reference/en/file.news.html:73(li)
+#: doc/reference/en/file.news.html:91(li)
msgid " supported data label."
msgstr " ¤¬¥Ç¡¼¥¿¤Î¥é¥Ù¥ë¤âÈæ³Ó¤¹¤ë¤è¤¦¤Ë¤Ê¤Ã¤¿¡£"
-#: doc/reference/en/file.news.html:75(h2)
+#: doc/reference/en/file.news.html:93(h2)
msgid "2.4.1 ? 2011-11-09"
msgstr ""
-#: doc/reference/en/file.news.html:78(li)
+#: doc/reference/en/file.news.html:96(li)
msgid ""
"Accepted AssertionMessage as assertion¡Çs user message. It is used in "
"assert_select in actionpack. [Reported by David Heath]"
@@ -35212,75 +35348,75 @@ msgstr ""
"¥¢¥µ¡¼¥·¥ç¥ó¤Ë»ØÄꤹ¤ë¥á¥Ã¥»¡¼¥¸¤ËAssertionMessage¤â»È¤¨¤ë¤è¤¦¤Ë¤·¤¿¡£¤³¤ì¤Ï"
"actionpackÆâ¤Îassert_select¤Ç»È¤ï¤ì¤Æ¤¤¤ë¡£ [David Heath¤µ¤ó¤¬Êó¹ð]"
-#: doc/reference/en/file.news.html:82(h3)
-#: doc/reference/en/file.news.html:102(h3)
-#: doc/reference/en/file.news.html:122(h3)
-#: doc/reference/en/file.news.html:145(h3)
+#: doc/reference/en/file.news.html:100(h3)
+#: doc/reference/en/file.news.html:120(h3)
+#: doc/reference/en/file.news.html:140(h3)
+#: doc/reference/en/file.news.html:163(h3)
msgid "Fixes"
msgstr "½¤Àµ"
-#: doc/reference/en/file.news.html:84(span)
+#: doc/reference/en/file.news.html:102(span)
msgid "LANG"
msgstr ""
-#: doc/reference/en/file.news.html:84(li)
+#: doc/reference/en/file.news.html:102(li)
msgid "Fixed test failure on =C. #11 [Reported by boutil]"
msgstr ""
" =C¤Ç¤â¥Æ¥¹¥È¤¬¥Ñ¥¹¤¹¤ë¤è¤¦¤Ë¤·¤¿¡£ #11 [boutil¤µ¤ó¤¬Êó¹ð]"
-#: doc/reference/en/file.news.html:85(li)
+#: doc/reference/en/file.news.html:103(li)
msgid "Suppress warnings on Ruby 1.9.2."
msgstr "Ruby 1.9.2¤Ç·Ù¹ð¤¬¤Ç¤Ê¤¤¤è¤¦¤Ë¤·¤¿¡£"
-#: doc/reference/en/file.news.html:89(li)
+#: doc/reference/en/file.news.html:107(li)
msgid "boutil"
msgstr "boutil¤µ¤ó"
-#: doc/reference/en/file.news.html:90(li)
+#: doc/reference/en/file.news.html:108(li)
msgid "David Heath"
msgstr "David Heath¤µ¤ó"
-#: doc/reference/en/file.news.html:92(h2)
+#: doc/reference/en/file.news.html:110(h2)
msgid "2.4.0 ? 2011-09-18"
msgstr ""
-#: doc/reference/en/file.news.html:95(li)
+#: doc/reference/en/file.news.html:113(li)
msgid "Supported Travis CI. #5 [Suggested by James Mead]"
msgstr "Travis CIÂбþ¡£ #5 [James Mead¤µ¤ó¤¬Äó°Æ]"
-#: doc/reference/en/file.news.html:96(li)
+#: doc/reference/en/file.news.html:114(li)
msgid "Added Gemfile. #6 [Suggested by James Mead]"
msgstr "Gemfile¤òÄɲá£#6 [James Mead¤µ¤ó¤¬Äó°Æ]"
-#: doc/reference/en/file.news.html:97(li)
+#: doc/reference/en/file.news.html:115(li)
msgid "[ui][console] Supported notification in show-detail-immediately."
msgstr "[ui][console] show-detail-immediately¥â¡¼¥É¤ÇÄÌÃΤò¥µ¥Ý¡¼¥È¡£"
-#: doc/reference/en/file.news.html:98(li)
+#: doc/reference/en/file.news.html:116(li)
msgid "[ui][console] enable ?show-detail-immediately by default."
msgstr "[ui][console] ¥Ç¥Õ¥©¥ë¥È¤Ç--show-detail-immediately¤ò͸ú¤Ë¤·¤¿¡£"
-#: doc/reference/en/file.news.html:99(li)
+#: doc/reference/en/file.news.html:117(li)
msgid "[ui] Added ?max-diff-target-string-size option."
msgstr "[ui] --max-diff-target-string-size¤òÄɲá£"
-#: doc/reference/en/file.news.html:100(li)
+#: doc/reference/en/file.news.html:118(li)
msgid "[ui][console] Supported 256 colors."
msgstr "[ui][console] 256¿§¤ËÂбþ¡£"
-#: doc/reference/en/file.news.html:104(li)
+#: doc/reference/en/file.news.html:122(li)
msgid "Added missing fixture file. #7 [Reported by grafi-tt]"
msgstr "È´¤±¤Æ¤¤¤¿¥Õ¥£¥¯¥¹¥Á¥ã¡¼¥Õ¥¡¥¤¥ë¤òÄɲᣠ#7 [grafi-tt¤µ¤ó¤¬Êó¹ð]"
-#: doc/reference/en/file.news.html:105(li)
+#: doc/reference/en/file.news.html:123(li)
msgid "[ui][console] Added missing the last newline for progress level."
msgstr "[ui][console] progress½ÐÎÏ¥ì¥Ù¥ë¤Ç¤ê¤Ê¤«¤Ã¤¿ºÇ¸å¤Î²þ¹Ô¤òÄɲá£"
-#: doc/reference/en/file.news.html:106(li)
+#: doc/reference/en/file.news.html:124(li)
msgid "Supported correct backtrace for redefined notification."
msgstr "ºÆÄêµÁ¤·¤¿ÄÌÃΤÇÀµ¤·¤¯¥Ð¥Ã¥¯¥È¥ì¡¼¥¹¤ò¼èÆÀ¤Ç¤¤ë¤è¤¦¤Ë¤·¤¿¡£"
-#: doc/reference/en/file.news.html:107(li)
+#: doc/reference/en/file.news.html:125(li)
msgid ""
"Don¡Çt handle Timeout::Error as pass through exception on Ruby 1.8. #8 "
"[Reported by Marc Seeger (Acquia)]"
@@ -35288,883 +35424,883 @@ msgstr ""
"Ruby 1.8¤Ç¤ÏTimeout::Error¤ò½èÍý¤¹¤ë¤è¤¦¤Ë¤·¤¿¡£ #8 [Marc Seeger (Acquia)¤µ¤ó"
"¤¬Êó¹ð]"
-#: doc/reference/en/file.news.html:112(li)
-#: doc/reference/en/file.news.html:129(li)
+#: doc/reference/en/file.news.html:130(li)
+#: doc/reference/en/file.news.html:147(li)
msgid "James Mead"
msgstr "James Mead¤µ¤ó"
-#: doc/reference/en/file.news.html:113(li)
-#: doc/reference/en/file.news.html:155(li)
+#: doc/reference/en/file.news.html:131(li)
+#: doc/reference/en/file.news.html:173(li)
msgid "grafi-tt"
msgstr "grafi-tt¤µ¤ó"
-#: doc/reference/en/file.news.html:114(li)
+#: doc/reference/en/file.news.html:132(li)
msgid "Marc Seeger (Acquia)"
msgstr "Marc Seeger (Acquia)¤µ¤ó"
-#: doc/reference/en/file.news.html:116(h2)
+#: doc/reference/en/file.news.html:134(h2)
msgid "2.3.2 ? 2011-08-15"
msgstr ""
-#: doc/reference/en/file.news.html:117(p)
+#: doc/reference/en/file.news.html:135(p)
msgid "A bug fix release."
msgstr "¥Ð¥°¥Õ¥£¥Ã¥¯¥¹¥ê¥ê¡¼¥¹¡£"
-#: doc/reference/en/file.news.html:120(li)
+#: doc/reference/en/file.news.html:138(li)
msgid "[ui][console] Added some newlines to improve readability."
msgstr "[ui][console] ÆÉ¤ß°×¤¯¤¹¤ë¤¿¤á¤Ë²þ¹Ô¤òÄɲá£"
-#: doc/reference/en/file.news.html:124(li)
+#: doc/reference/en/file.news.html:142(li)
msgid "[ui][console] Worked ?verbose again."
msgstr "[ui][console] --verbose¤¬Æ°¤¯¤è¤¦¤Ë¤·¤¿¡£"
-#: doc/reference/en/file.news.html:125(li)
+#: doc/reference/en/file.news.html:143(li)
msgid "Re-supported Ruby 1.8.6. [Reported by James Mead]"
msgstr "Ruby 1.8.6¤òºÆ¥µ¥Ý¡¼¥È¡£ [James Mead¤µ¤ó¤¬Êó¹ð]"
-#: doc/reference/en/file.news.html:131(h2)
+#: doc/reference/en/file.news.html:149(h2)
msgid "2.3.1 ? 2011-08-06"
msgstr ""
-#: doc/reference/en/file.news.html:132(p)
+#: doc/reference/en/file.news.html:150(p)
msgid "Output improvement release!"
msgstr ""
-#: doc/reference/en/file.news.html:135(li)
+#: doc/reference/en/file.news.html:153(li)
msgid "[ui][console] Outputs omissions and notifications in short."
msgstr ""
-#: doc/reference/en/file.news.html:136(li)
+#: doc/reference/en/file.news.html:154(li)
msgid "[ui][console] Added ¡Èimportant-only¡É verbose level."
msgstr ""
-#: doc/reference/en/file.news.html:137(li)
+#: doc/reference/en/file.news.html:155(li)
msgid "Intelligence diff supports recursive references."
msgstr ""
-#: doc/reference/en/file.news.html:138(li)
+#: doc/reference/en/file.news.html:156(li)
msgid ""
"[rubyforge #29325] Supported Ruby Enterprise Edition. [Reported by Hans de "
"Graaff]"
msgstr ""
-#: doc/reference/en/file.news.html:140(li)
+#: doc/reference/en/file.news.html:158(li)
msgid "[rubyforge #29326] Supported JRuby. [Reported by Hans de Graaff]"
msgstr ""
-#: doc/reference/en/file.news.html:142(li)
+#: doc/reference/en/file.news.html:160(li)
msgid ""
"Added ?show-detail-immediately option that shows fault details when a fault "
"is occurred."
msgstr ""
-#: doc/reference/en/file.news.html:147(li)
+#: doc/reference/en/file.news.html:165(li)
msgid ""
"[pull request #1] Fixed a problem that load collector can¡Çt load a test file "
"on Ruby 1.9. [Patch by grafi-tt]"
msgstr ""
-#: doc/reference/en/file.news.html:149(li)
+#: doc/reference/en/file.news.html:167(li)
msgid ""
"[issue #3] Fixed a problem that implicit method name override by declarative "
"style test definition. [Reported by Jeremy Stephens]"
msgstr ""
-#: doc/reference/en/file.news.html:156(li)
+#: doc/reference/en/file.news.html:174(li)
msgid "Jeremy Stephens"
msgstr ""
-#: doc/reference/en/file.news.html:157(li)
+#: doc/reference/en/file.news.html:175(li)
msgid "Hans de Graaff"
msgstr ""
-#: doc/reference/en/file.news.html:159(h2)
+#: doc/reference/en/file.news.html:177(h2)
msgid "2.3.0 / 2011-04-17"
msgstr ""
-#: doc/reference/en/file.news.html:161(li)
+#: doc/reference/en/file.news.html:179(li)
msgid "13 enhancements"
msgstr ""
-#: doc/reference/en/file.news.html:162(li)
+#: doc/reference/en/file.news.html:180(li)
msgid "improve Hash key sorting for diff."
msgstr ""
-#: doc/reference/en/file.news.html:163(li)
+#: doc/reference/en/file.news.html:181(li)
msgid ""
"[#28928] support any characters in declarative style description. [Daniel "
"Berger]"
msgstr ""
-#: doc/reference/en/file.news.html:165(li)
+#: doc/reference/en/file.news.html:183(li)
msgid "add Error#location and make #backtrace deprecated."
msgstr ""
-#: doc/reference/en/file.news.html:166(li)
+#: doc/reference/en/file.news.html:184(li)
msgid "make TestCase#passed? public."
msgstr ""
-#: doc/reference/en/file.news.html:167(li)
+#: doc/reference/en/file.news.html:185(li)
msgid "add result finished and pass assertion notifications."
msgstr ""
-#: doc/reference/en/file.news.html:168(li)
+#: doc/reference/en/file.news.html:186(li)
msgid "add TestSuite#passed? public."
msgstr ""
-#: doc/reference/en/file.news.html:169(li)
+#: doc/reference/en/file.news.html:187(li)
msgid "add test runner."
msgstr ""
-#: doc/reference/en/file.news.html:170(li)
+#: doc/reference/en/file.news.html:188(li)
msgid "add ?output-file-descriptor option."
msgstr ""
-#: doc/reference/en/file.news.html:171(li)
+#: doc/reference/en/file.news.html:189(li)
msgid "measure elapsed time for each test."
msgstr ""
-#: doc/reference/en/file.news.html:172(li)
+#: doc/reference/en/file.news.html:190(li)
msgid "add ?collector option."
msgstr ""
-#: doc/reference/en/file.news.html:173(li)
+#: doc/reference/en/file.news.html:191(li)
msgid "support test driven test. [Haruka Yoshihara]"
msgstr ""
-#: doc/reference/en/file.news.html:175(li)
+#: doc/reference/en/file.news.html:193(li)
msgid "add cleanup hook it runs between after test and before teardown."
msgstr ""
-#: doc/reference/en/file.news.html:176(li)
+#: doc/reference/en/file.news.html:194(li)
msgid "support recursive collection sort for diff."
msgstr ""
-#: doc/reference/en/file.news.html:180(li)
-#: doc/reference/en/file.news.html:223(li)
-#: doc/reference/en/file.news.html:239(li)
-#: doc/reference/en/file.news.html:249(li)
-#: doc/reference/en/file.news.html:303(li)
-#: doc/reference/en/file.news.html:334(li)
-#: doc/reference/en/file.news.html:396(li)
-#: doc/reference/en/file.news.html:420(li)
-#: doc/reference/en/file.news.html:453(li)
+#: doc/reference/en/file.news.html:198(li)
+#: doc/reference/en/file.news.html:241(li)
+#: doc/reference/en/file.news.html:257(li)
+#: doc/reference/en/file.news.html:267(li)
+#: doc/reference/en/file.news.html:321(li)
+#: doc/reference/en/file.news.html:352(li)
+#: doc/reference/en/file.news.html:414(li)
+#: doc/reference/en/file.news.html:438(li)
+#: doc/reference/en/file.news.html:471(li)
msgid "Daniel Berger"
msgstr ""
-#: doc/reference/en/file.news.html:181(li)
+#: doc/reference/en/file.news.html:199(li)
msgid "Haruka Yoshihara"
msgstr ""
-#: doc/reference/en/file.news.html:183(h2)
+#: doc/reference/en/file.news.html:201(h2)
msgid "2.2.0 / 2011-02-14"
msgstr ""
-#: doc/reference/en/file.news.html:185(li)
+#: doc/reference/en/file.news.html:203(li)
msgid "22 enhancements"
msgstr ""
-#: doc/reference/en/file.news.html:186(li)
+#: doc/reference/en/file.news.html:204(li)
msgid "[#28808] accept String as delta for assert_in_delta. [Daniel Berger]"
msgstr ""
-#: doc/reference/en/file.news.html:188(li)
+#: doc/reference/en/file.news.html:206(li)
msgid "[test-unit-users-en:00035] make GC-able finished tests. [Daniel Berger]"
msgstr ""
-#: doc/reference/en/file.news.html:190(span)
+#: doc/reference/en/file.news.html:208(span)
msgid "COLUMNS"
msgstr ""
-#: doc/reference/en/file.news.html:190(li)
+#: doc/reference/en/file.news.html:208(li)
msgid "use also environment variable to guess terminal width."
msgstr ""
-#: doc/reference/en/file.news.html:191(li)
+#: doc/reference/en/file.news.html:209(li)
msgid "make delta for assert_in_delta optional. [Nobuyoshi Nakada]"
msgstr ""
-#: doc/reference/en/file.news.html:193(li)
+#: doc/reference/en/file.news.html:211(li)
msgid "add assert_not_respond_to. [Nobuyoshi Nakada]"
msgstr ""
-#: doc/reference/en/file.news.html:195(li)
+#: doc/reference/en/file.news.html:213(li)
msgid "add assert_not_match. assert_no_match is deprecated. [Nobuyoshi Nakada]"
msgstr ""
-#: doc/reference/en/file.news.html:197(li)
+#: doc/reference/en/file.news.html:215(li)
msgid "add assert_not_in_delta. [Nobuyoshi Nakada]"
msgstr ""
-#: doc/reference/en/file.news.html:199(li)
+#: doc/reference/en/file.news.html:217(li)
msgid "add assert_in_epsilon. [Nobuyoshi Nakada]"
msgstr ""
-#: doc/reference/en/file.news.html:201(li)
+#: doc/reference/en/file.news.html:219(li)
msgid "add assert_not_in_epsilon. [Nobuyoshi Nakada]"
msgstr ""
-#: doc/reference/en/file.news.html:203(li)
+#: doc/reference/en/file.news.html:221(li)
msgid "add assert_include. [Nobuyoshi Nakada]"
msgstr ""
-#: doc/reference/en/file.news.html:205(li)
+#: doc/reference/en/file.news.html:223(li)
msgid "add assert_not_include. [Nobuyoshi Nakada]"
msgstr ""
-#: doc/reference/en/file.news.html:207(li)
+#: doc/reference/en/file.news.html:225(li)
msgid "add assert_empty. [Nobuyoshi Nakada]"
msgstr ""
-#: doc/reference/en/file.news.html:209(li)
+#: doc/reference/en/file.news.html:227(li)
msgid "add assert_not_empty. [Nobuyoshi Nakada]"
msgstr ""
-#: doc/reference/en/file.news.html:211(li)
+#: doc/reference/en/file.news.html:229(li)
msgid "notify require failed paths."
msgstr ""
-#: doc/reference/en/file.news.html:212(li)
+#: doc/reference/en/file.news.html:230(li)
msgid "validate message value for assert."
msgstr ""
-#: doc/reference/en/file.news.html:213(li)
+#: doc/reference/en/file.news.html:231(li)
msgid "show throughputs at the last."
msgstr ""
-#: doc/reference/en/file.news.html:214(span)
+#: doc/reference/en/file.news.html:232(span)
msgid "ASCII"
msgstr ""
-#: doc/reference/en/file.news.html:214(li)
+#: doc/reference/en/file.news.html:232(li)
msgid "support not compatible string diff."
msgstr ""
-#: doc/reference/en/file.news.html:215(li)
+#: doc/reference/en/file.news.html:233(li)
msgid "support colorized diff on encoding different string."
msgstr ""
-#: doc/reference/en/file.news.html:216(li)
+#: doc/reference/en/file.news.html:234(li)
msgid "normalize entry order of Hash for readable diff."
msgstr ""
-#: doc/reference/en/file.news.html:217(li)
+#: doc/reference/en/file.news.html:235(li)
msgid "add ?ignore-name option."
msgstr ""
-#: doc/reference/en/file.news.html:218(li)
+#: doc/reference/en/file.news.html:236(li)
msgid "add ?ignore-testcase option."
msgstr ""
-#: doc/reference/en/file.news.html:219(li)
+#: doc/reference/en/file.news.html:237(li)
msgid "add assert_not_send."
msgstr ""
-#: doc/reference/en/file.news.html:224(li)
+#: doc/reference/en/file.news.html:242(li)
msgid "Nobuyoshi Nakada"
msgstr ""
-#: doc/reference/en/file.news.html:226(h2)
+#: doc/reference/en/file.news.html:244(h2)
msgid "2.1.2 / 2010-11-25"
msgstr ""
-#: doc/reference/en/file.news.html:228(li)
+#: doc/reference/en/file.news.html:246(li)
msgid "1 enhancement"
msgstr ""
-#: doc/reference/en/file.news.html:229(li)
+#: doc/reference/en/file.news.html:247(li)
msgid "support auto runner prepare hook."
msgstr ""
-#: doc/reference/en/file.news.html:231(h2)
+#: doc/reference/en/file.news.html:249(h2)
msgid "2.1.1 / 2010-07-29"
msgstr ""
-#: doc/reference/en/file.news.html:233(li)
-#: doc/reference/en/file.news.html:243(li)
-#: doc/reference/en/file.news.html:390(li)
+#: doc/reference/en/file.news.html:251(li)
+#: doc/reference/en/file.news.html:261(li)
+#: doc/reference/en/file.news.html:408(li)
msgid "1 bug fix"
msgstr ""
-#: doc/reference/en/file.news.html:234(li)
+#: doc/reference/en/file.news.html:252(li)
msgid "[test-unit-users-en:00026] re-work tap runner. [Daniel Berger]"
msgstr ""
-#: doc/reference/en/file.news.html:241(p)
+#: doc/reference/en/file.news.html:259(p)
msgid "=== 2.1.0 / 2010-07-17"
msgstr ""
-#: doc/reference/en/file.news.html:244(li)
+#: doc/reference/en/file.news.html:262(li)
msgid "[#28267] global config file ignored [Daniel Berger]"
msgstr ""
-#: doc/reference/en/file.news.html:251(h2)
+#: doc/reference/en/file.news.html:269(h2)
msgid "2.0.8 / 2010-06-02"
msgstr ""
-#: doc/reference/en/file.news.html:253(li)
+#: doc/reference/en/file.news.html:271(li)
msgid "5 major enchancements"
msgstr ""
-#: doc/reference/en/file.news.html:254(li)
+#: doc/reference/en/file.news.html:272(li)
msgid "collect *_test.rb and *-test.rb files as test files."
msgstr ""
-#: doc/reference/en/file.news.html:256(span)
#: doc/reference/en/file.news.html:274(span)
-#: doc/reference/en/file.news.html:283(span)
-#: doc/reference/en/file.news.html:291(span)
-#: doc/reference/en/file.news.html:302(span)
-#: doc/reference/en/file.news.html:327(span)
-#: doc/reference/en/file.news.html:333(span)
+#: doc/reference/en/file.news.html:292(span)
+#: doc/reference/en/file.news.html:301(span)
+#: doc/reference/en/file.news.html:309(span)
+#: doc/reference/en/file.news.html:320(span)
+#: doc/reference/en/file.news.html:345(span)
+#: doc/reference/en/file.news.html:351(span)
#: doc/reference/en/index.html:121(span)
#: doc/reference/en/file.README.html:121(span)
msgid "MARCHALAND"
msgstr ""
-#: doc/reference/en/file.news.html:255(li)
+#: doc/reference/en/file.news.html:273(li)
msgid ""
"[#28181] improve assert_in_delta message. [Suggested by David ]"
msgstr ""
-#: doc/reference/en/file.news.html:257(li)
+#: doc/reference/en/file.news.html:275(li)
msgid ""
"show string encoding in assert_equal failure message if they are different."
msgstr ""
-#: doc/reference/en/file.news.html:259(li)
+#: doc/reference/en/file.news.html:277(li)
msgid "change default color scheme:"
msgstr ""
-#: doc/reference/en/file.news.html:260(li)
+#: doc/reference/en/file.news.html:278(li)
msgid "success: green back + white"
msgstr ""
-#: doc/reference/en/file.news.html:261(li)
+#: doc/reference/en/file.news.html:279(li)
msgid "failure: red back + white"
msgstr ""
-#: doc/reference/en/file.news.html:262(li)
+#: doc/reference/en/file.news.html:280(li)
msgid "add capture_output."
msgstr ""
-#: doc/reference/en/file.news.html:265(li)
-#: doc/reference/en/file.news.html:294(li)
-#: doc/reference/en/file.news.html:326(li)
+#: doc/reference/en/file.news.html:283(li)
+#: doc/reference/en/file.news.html:312(li)
+#: doc/reference/en/file.news.html:344(li)
msgid "2 bug fixes"
msgstr ""
-#: doc/reference/en/file.news.html:266(li)
+#: doc/reference/en/file.news.html:284(li)
msgid ""
"fix a bug that console runner on verbose mode causes an error for long test "
"name (>= 61)."
msgstr ""
-#: doc/reference/en/file.news.html:268(li)
+#: doc/reference/en/file.news.html:286(li)
msgid ""
"[#28093] Autorunner ignores all files in a directory named test by default "
"[Reported by Florian Frank]"
msgstr ""
-#: doc/reference/en/file.news.html:273(li)
+#: doc/reference/en/file.news.html:291(li)
msgid "Florian Frank"
msgstr ""
-#: doc/reference/en/file.news.html:274(li)
-#: doc/reference/en/file.news.html:302(li)
-#: doc/reference/en/file.news.html:333(li)
+#: doc/reference/en/file.news.html:292(li)
+#: doc/reference/en/file.news.html:320(li)
+#: doc/reference/en/file.news.html:351(li)
msgid "David "
msgstr ""
-#: doc/reference/en/file.news.html:276(h2)
+#: doc/reference/en/file.news.html:294(h2)
msgid "2.0.7 / 2010-03-09"
msgstr ""
-#: doc/reference/en/file.news.html:278(li)
-#: doc/reference/en/file.news.html:347(li)
+#: doc/reference/en/file.news.html:296(li)
+#: doc/reference/en/file.news.html:365(li)
msgid "4 major enhancements"
msgstr ""
-#: doc/reference/en/file.news.html:279(li)
+#: doc/reference/en/file.news.html:297(li)
msgid "detect redefined test methods."
msgstr ""
-#: doc/reference/en/file.news.html:280(span)
+#: doc/reference/en/file.news.html:298(span)
msgid "INTERFACE"
msgstr ""
-#: doc/reference/en/file.news.html:280(span)
+#: doc/reference/en/file.news.html:298(span)
msgid "IMCOMPATIBLE"
msgstr ""
-#: doc/reference/en/file.news.html:280(li)
+#: doc/reference/en/file.news.html:298(li)
msgid ""
"[ ] multiple ?name and ?testcase options "
"narrow down targets instead of adding targets."
msgstr ""
-#: doc/reference/en/file.news.html:282(li)
+#: doc/reference/en/file.news.html:300(li)
msgid ""
"[#27764] accept custom test_order for each test case. [Suggested by David "
" ]"
msgstr ""
-#: doc/reference/en/file.news.html:284(li)
+#: doc/reference/en/file.news.html:302(li)
msgid ""
"[#27790] ignore omitted tests from ¡Æn% passed¡Ç report. [Suggested by Daniel "
"Berger]"
msgstr ""
-#: doc/reference/en/file.news.html:288(li)
+#: doc/reference/en/file.news.html:306(li)
msgid "2 minor enchancements"
msgstr ""
-#: doc/reference/en/file.news.html:289(li)
+#: doc/reference/en/file.news.html:307(li)
msgid "[#27832] ignore .git directory. [Suggested by Daniel Berger]"
msgstr ""
-#: doc/reference/en/file.news.html:290(li)
+#: doc/reference/en/file.news.html:308(li)
msgid ""
"[#27792] require ¡Æfileutils¡Ç and ¡Ætmpdir¡Ç lazily for non-priority mode "
"users. [Suggested by David ]"
msgstr ""
-#: doc/reference/en/file.news.html:295(li)
+#: doc/reference/en/file.news.html:313(li)
msgid ""
"[#27892] modify processed arguments array destructively. [Reported by Bob "
"Saveland]"
msgstr ""
-#: doc/reference/en/file.news.html:297(span)
+#: doc/reference/en/file.news.html:315(span)
msgid "HOME"
msgstr ""
-#: doc/reference/en/file.news.html:297(li)
+#: doc/reference/en/file.news.html:315(li)
msgid ""
"work without environment variable. [Reported by Champak Ch]"
msgstr ""
-#: doc/reference/en/file.news.html:304(li)
+#: doc/reference/en/file.news.html:322(li)
msgid "Bob Saveland"
msgstr ""
-#: doc/reference/en/file.news.html:305(li)
+#: doc/reference/en/file.news.html:323(li)
msgid "Champak Ch"
msgstr ""
-#: doc/reference/en/file.news.html:307(h2)
+#: doc/reference/en/file.news.html:325(h2)
msgid "2.0.6 / 2010-01-09"
msgstr ""
-#: doc/reference/en/file.news.html:309(li)
+#: doc/reference/en/file.news.html:327(li)
msgid "3 major enhancements"
msgstr ""
-#: doc/reference/en/file.news.html:310(li)
+#: doc/reference/en/file.news.html:328(li)
msgid ""
"[#27380] Declarative syntax? [Daniel Berger] support declarative syntax:"
msgstr ""
-#: doc/reference/en/file.news.html:317(li)
+#: doc/reference/en/file.news.html:335(li)
msgid ""
"support test description: description ¡Ètest description in natural language¡É "
"def test_my_test ¡Ä end"
msgstr ""
-#: doc/reference/en/file.news.html:322(li)
+#: doc/reference/en/file.news.html:340(li)
msgid ""
"make max diff target string size customizable by "
"TEST_UNIT_MAX_DIFF_TARGET_STRING_SIZE environment variable."
msgstr ""
-#: doc/reference/en/file.news.html:327(li)
+#: doc/reference/en/file.news.html:345(li)
msgid "[#27374] omit_if unexpected behavior [David ]"
msgstr ""
-#: doc/reference/en/file.news.html:328(li)
+#: doc/reference/en/file.news.html:346(li)
msgid ""
"fix a bug that tests in sub directories aren¡Çt load with ?basedir. [Daniel "
"Berger]"
msgstr ""
-#: doc/reference/en/file.news.html:336(h2)
+#: doc/reference/en/file.news.html:354(h2)
msgid "2.0.5 / 2009-10-18"
msgstr ""
-#: doc/reference/en/file.news.html:338(li)
-#: doc/reference/en/file.news.html:362(li)
+#: doc/reference/en/file.news.html:356(li)
+#: doc/reference/en/file.news.html:380(li)
msgid "1 bug fixes"
msgstr ""
-#: doc/reference/en/file.news.html:339(li)
+#: doc/reference/en/file.news.html:357(li)
msgid "[#27314] fix diff may raise an exception. [Erik Hollensbe]"
msgstr ""
-#: doc/reference/en/file.news.html:343(li)
-#: doc/reference/en/file.news.html:419(li)
+#: doc/reference/en/file.news.html:361(li)
+#: doc/reference/en/file.news.html:437(li)
msgid "Erik Hollensbe"
msgstr ""
-#: doc/reference/en/file.news.html:345(h2)
+#: doc/reference/en/file.news.html:363(h2)
msgid "2.0.4 / 2009-10-17"
msgstr ""
-#: doc/reference/en/file.news.html:348(li)
+#: doc/reference/en/file.news.html:366(li)
msgid "use ~/.test-unit.yml as global configuration file."
msgstr ""
-#: doc/reference/en/file.news.html:349(span)
+#: doc/reference/en/file.news.html:367(span)
msgid "TAP"
msgstr ""
-#: doc/reference/en/file.news.html:349(li)
+#: doc/reference/en/file.news.html:367(li)
msgid "add runner. (?runner tap)"
msgstr ""
-#: doc/reference/en/file.news.html:350(li)
+#: doc/reference/en/file.news.html:368(li)
msgid ""
"support colorized diff: http://test-unit.rubyforge.org/svn/trunk/images/"
"color-diff.png"
msgstr ""
-#: doc/reference/en/file.news.html:352(li)
+#: doc/reference/en/file.news.html:370(li)
msgid ""
"add Test::Unit::AutoRunner.default_runner= to specify default test runner."
msgstr ""
-#: doc/reference/en/file.news.html:355(li)
-#: doc/reference/en/file.news.html:382(li)
+#: doc/reference/en/file.news.html:373(li)
+#: doc/reference/en/file.news.html:400(li)
msgid "4 minor enhancements"
msgstr ""
-#: doc/reference/en/file.news.html:356(li)
+#: doc/reference/en/file.news.html:374(li)
msgid "improve verbose mode output format. (use indent)"
msgstr ""
-#: doc/reference/en/file.news.html:357(li)
+#: doc/reference/en/file.news.html:375(li)
msgid "support NOT_PASS_THROUGH_EXCEPTIONS."
msgstr ""
-#: doc/reference/en/file.news.html:358(code)
+#: doc/reference/en/file.news.html:376(code)
msgid "#{runner}"
msgstr ""
-#: doc/reference/en/file.news.html:358(li)
+#: doc/reference/en/file.news.html:376(li)
msgid "support arguments option in _options."
msgstr ""
-#: doc/reference/en/file.news.html:359(li)
+#: doc/reference/en/file.news.html:377(li)
msgid "TC_ ¢ª Test in sample test case name."
msgstr ""
-#: doc/reference/en/file.news.html:363(li)
+#: doc/reference/en/file.news.html:381(li)
msgid ""
"[#27195] test-unit-2.0.3 + ruby-1.9.1 cannot properly test DelegateClass "
"subclasses [Mike Pomraning]"
msgstr ""
-#: doc/reference/en/file.news.html:368(li)
+#: doc/reference/en/file.news.html:386(li)
msgid "Mike Pomraning"
msgstr ""
-#: doc/reference/en/file.news.html:370(h2)
+#: doc/reference/en/file.news.html:388(h2)
msgid "2.0.3 / 2009-07-19"
msgstr ""
-#: doc/reference/en/file.news.html:372(li)
+#: doc/reference/en/file.news.html:390(li)
msgid "6 major enhancements"
msgstr ""
-#: doc/reference/en/file.news.html:373(li)
+#: doc/reference/en/file.news.html:391(li)
msgid "add assert_predicate."
msgstr ""
-#: doc/reference/en/file.news.html:374(li)
+#: doc/reference/en/file.news.html:392(li)
msgid "add assert_not_predicate."
msgstr ""
-#: doc/reference/en/file.news.html:375(li)
+#: doc/reference/en/file.news.html:393(li)
msgid ""
"[#24210] assert_kind_of supports an array of classes or modules. [Daniel "
"Berger]"
msgstr ""
-#: doc/reference/en/file.news.html:377(li)
+#: doc/reference/en/file.news.html:395(li)
msgid "assert_instance_of supports an array of classes or modules."
msgstr ""
-#: doc/reference/en/file.news.html:378(li)
+#: doc/reference/en/file.news.html:396(li)
msgid "add ?default-priority option."
msgstr ""
-#: doc/reference/en/file.news.html:379(li)
+#: doc/reference/en/file.news.html:397(li)
msgid "[#26627] add ?order option. [Daniel Berger]"
msgstr ""
-#: doc/reference/en/file.news.html:383(li)
+#: doc/reference/en/file.news.html:401(li)
msgid "use yellow foreground + black background for error."
msgstr ""
-#: doc/reference/en/file.news.html:384(li)
+#: doc/reference/en/file.news.html:402(li)
msgid "don¡Çt show diff for long string."
msgstr ""
-#: doc/reference/en/file.news.html:385(li)
+#: doc/reference/en/file.news.html:403(li)
msgid ""
"accept ¡È*term-color¡É environment as colorizable terminal. "
"(e.g. Apple¡Çs Terminal)"
msgstr ""
-#: doc/reference/en/file.news.html:387(li)
+#: doc/reference/en/file.news.html:405(li)
msgid "[#26268] add a workaround for test-spec¡Çs after_all. [Angelo Lakra]"
msgstr ""
-#: doc/reference/en/file.news.html:391(li)
+#: doc/reference/en/file.news.html:409(li)
msgid "[#23586] re-support ruby 1.9.1. [Diego Petten«Ò]"
msgstr ""
-#: doc/reference/en/file.news.html:395(li)
+#: doc/reference/en/file.news.html:413(li)
msgid "Diego Petten«Ò"
msgstr ""
-#: doc/reference/en/file.news.html:397(li)
+#: doc/reference/en/file.news.html:415(li)
msgid "Angelo Lakra"
msgstr ""
-#: doc/reference/en/file.news.html:399(h2)
+#: doc/reference/en/file.news.html:417(h2)
msgid "2.0.2 / 2008-12-21"
msgstr ""
-#: doc/reference/en/file.news.html:401(li)
+#: doc/reference/en/file.news.html:419(li)
msgid "2 major enhancements"
msgstr ""
-#: doc/reference/en/file.news.html:404(li)
+#: doc/reference/en/file.news.html:422(li)
msgid "re-support ruby 1.8.5."
msgstr ""
-#: doc/reference/en/file.news.html:405(li)
+#: doc/reference/en/file.news.html:423(li)
msgid "improve exception object comparison."
msgstr ""
-#: doc/reference/en/file.news.html:408(li)
+#: doc/reference/en/file.news.html:426(li)
msgid "3 bug fixes"
msgstr ""
-#: doc/reference/en/file.news.html:411(li)
+#: doc/reference/en/file.news.html:429(li)
msgid "[#22723]: collector fails on anonymous classes"
msgstr ""
-#: doc/reference/en/file.news.html:412(li)
+#: doc/reference/en/file.news.html:430(li)
msgid "[#22986]: Test names with ¡Æ?¡Ç blow up on Windows"
msgstr ""
-#: doc/reference/en/file.news.html:413(li)
+#: doc/reference/en/file.news.html:431(li)
msgid "[#22988]: don¡Çt create .test-result on non-priority mode."
msgstr ""
-#: doc/reference/en/file.news.html:421(li)
+#: doc/reference/en/file.news.html:439(li)
msgid "Bill Lear"
msgstr ""
-#: doc/reference/en/file.news.html:423(h2)
+#: doc/reference/en/file.news.html:441(h2)
msgid "2.0.1 / 2008-11-09"
msgstr ""
-#: doc/reference/en/file.news.html:425(li)
+#: doc/reference/en/file.news.html:443(li)
msgid "19 major enhancements"
msgstr ""
-#: doc/reference/en/file.news.html:428(li)
+#: doc/reference/en/file.news.html:446(li)
msgid "support ruby 1.9.1."
msgstr ""
-#: doc/reference/en/file.news.html:429(li)
+#: doc/reference/en/file.news.html:447(li)
msgid "add run_test method to be extensible."
msgstr ""
-#: doc/reference/en/file.news.html:430(li)
+#: doc/reference/en/file.news.html:448(li)
msgid "improve priority-mode auto off."
msgstr ""
-#: doc/reference/en/file.news.html:431(li)
+#: doc/reference/en/file.news.html:449(li)
msgid "improve startup/shutdown RDoc. [Daniel Berger]"
msgstr ""
-#: doc/reference/en/file.news.html:432(li)
+#: doc/reference/en/file.news.html:450(li)
msgid "add assert_compare. [#20851] [Designing Patterns]"
msgstr ""
-#: doc/reference/en/file.news.html:433(li)
+#: doc/reference/en/file.news.html:451(li)
msgid "add assert_fail_assertion. [#20851] [Designing Patterns]"
msgstr ""
-#: doc/reference/en/file.news.html:434(li)
+#: doc/reference/en/file.news.html:452(li)
msgid "add assert_raise_message. [#20851] [Designing Patterns]"
msgstr ""
-#: doc/reference/en/file.news.html:435(li)
+#: doc/reference/en/file.news.html:453(li)
msgid "support folded diff."
msgstr ""
-#: doc/reference/en/file.news.html:436(li)
+#: doc/reference/en/file.news.html:454(li)
msgid "add assert_raise_kind_of. [Daniel Berger]"
msgstr ""
-#: doc/reference/en/file.news.html:437(li)
+#: doc/reference/en/file.news.html:455(li)
msgid "ingore inherited test for nested test case."
msgstr ""
-#: doc/reference/en/file.news.html:438(li)
+#: doc/reference/en/file.news.html:456(li)
msgid "add assert_const_defined."
msgstr ""
-#: doc/reference/en/file.news.html:439(li)
+#: doc/reference/en/file.news.html:457(li)
msgid "add assert_not_const_defined."
msgstr ""
-#: doc/reference/en/file.news.html:440(li)
+#: doc/reference/en/file.news.html:458(li)
msgid "support assert_raise with an exception object."
msgstr ""
-#: doc/reference/en/file.news.html:441(li)
+#: doc/reference/en/file.news.html:459(li)
msgid ""
"support assert_raise with no arguments that asserts any exception is raised. "
"[#22602] [Daniel Berger]"
msgstr ""
-#: doc/reference/en/file.news.html:443(li)
+#: doc/reference/en/file.news.html:461(li)
msgid "support folded dot progress."
msgstr ""
-#: doc/reference/en/file.news.html:444(li)
+#: doc/reference/en/file.news.html:462(li)
msgid "add ?progress-row-max option."
msgstr ""
-#: doc/reference/en/file.news.html:445(li)
+#: doc/reference/en/file.news.html:463(li)
msgid "support color scheme customize."
msgstr ""
-#: doc/reference/en/file.news.html:446(li)
+#: doc/reference/en/file.news.html:464(li)
msgid "support configuration file. ( )"
msgstr ""
-#: doc/reference/en/file.news.html:447(span)
+#: doc/reference/en/file.news.html:465(span)
msgid "XXX"
msgstr ""
-#: doc/reference/en/file.news.html:447(li)
+#: doc/reference/en/file.news.html:465(li)
msgid ""
"recognize test- .rb files as test files not only test_XXX.rb"
msgstr ""
-#: doc/reference/en/file.news.html:454(li)
+#: doc/reference/en/file.news.html:472(li)
msgid "Designing Patterns"
msgstr ""
-#: doc/reference/en/file.news.html:456(h2)
+#: doc/reference/en/file.news.html:474(h2)
msgid "2.0.0 / 2008-06-18"
msgstr ""
-#: doc/reference/en/file.news.html:458(li)
+#: doc/reference/en/file.news.html:476(li)
msgid "15 major enhancements"
msgstr ""
-#: doc/reference/en/file.news.html:461(li)
+#: doc/reference/en/file.news.html:479(li)
msgid "support startup/shutdown. (test case level setup/teardown)"
msgstr ""
-#: doc/reference/en/file.news.html:462(li)
+#: doc/reference/en/file.news.html:480(li)
msgid "support multiple setup/teardown."
msgstr ""
-#: doc/reference/en/file.news.html:463(li)
+#: doc/reference/en/file.news.html:481(li)
msgid "support pending."
msgstr ""
-#: doc/reference/en/file.news.html:464(li)
+#: doc/reference/en/file.news.html:482(li)
msgid "support omission."
msgstr ""
-#: doc/reference/en/file.news.html:465(li)
+#: doc/reference/en/file.news.html:483(li)
msgid "support notification."
msgstr ""
-#: doc/reference/en/file.news.html:466(li)
+#: doc/reference/en/file.news.html:484(li)
msgid "support colorize."
msgstr ""
-#: doc/reference/en/file.news.html:467(li)
+#: doc/reference/en/file.news.html:485(li)
msgid "support diff."
msgstr ""
-#: doc/reference/en/file.news.html:468(li)
+#: doc/reference/en/file.news.html:486(li)
msgid "support test attribute."
msgstr ""
-#: doc/reference/en/file.news.html:469(li)
+#: doc/reference/en/file.news.html:487(li)
msgid "add assert_boolean."
msgstr ""
-#: doc/reference/en/file.news.html:470(li)
+#: doc/reference/en/file.news.html:488(li)
msgid "add assert_true."
msgstr ""
-#: doc/reference/en/file.news.html:471(li)
+#: doc/reference/en/file.news.html:489(li)
msgid "add assert_false."
msgstr ""
-#: doc/reference/en/file.news.html:472(li)
+#: doc/reference/en/file.news.html:490(li)
msgid "add ?priority-mode option."
msgstr ""
-#: doc/reference/en/file.news.html:473(li)
+#: doc/reference/en/file.news.html:491(li)
msgid "don¡Çt use ObjectSpace to collect test cases."
msgstr ""
-#: doc/reference/en/file.news.html:474(li)
+#: doc/reference/en/file.news.html:492(li)
msgid ""
"make more customizable. (additional options, exception handling and so on)"
msgstr ""
-#: doc/reference/en/file.news.html:475(li)
+#: doc/reference/en/file.news.html:493(li)
msgid "improve Emacs integration."
msgstr ""
-#: doc/reference/en/file.news.html:478(li)
+#: doc/reference/en/file.news.html:496(li)
msgid "4 major changes"
msgstr ""
-#: doc/reference/en/file.news.html:481(li)
+#: doc/reference/en/file.news.html:499(li)
msgid "remove GTK+1 support."
msgstr ""
-#: doc/reference/en/file.news.html:482(li)
+#: doc/reference/en/file.news.html:500(li)
msgid "split GTK+ runner as another gem."
msgstr ""
-#: doc/reference/en/file.news.html:483(span)
+#: doc/reference/en/file.news.html:501(span)
msgid "FOX"
msgstr ""
-#: doc/reference/en/file.news.html:483(li)
+#: doc/reference/en/file.news.html:501(li)
msgid "split runner as another gem."
msgstr ""
-#: doc/reference/en/file.news.html:484(li)
+#: doc/reference/en/file.news.html:502(li)
msgid "split Tk runner as another gem."
msgstr ""
-#: doc/reference/en/file.news.html:486(h2)
+#: doc/reference/en/file.news.html:504(h2)
msgid "1.2.3 / 2008-02-25"
msgstr ""
-#: doc/reference/en/file.news.html:488(li)
+#: doc/reference/en/file.news.html:506(li)
msgid "1 major enhancement"
msgstr ""
-#: doc/reference/en/file.news.html:491(li)
+#: doc/reference/en/file.news.html:509(li)
msgid "Birthday (as a gem)!"
msgstr ""
@@ -36173,95 +36309,95 @@ msgid ""
" \n"
" \n"
" \n"
-"\n"
-" \n"
-"\n"
-" \n"
-" \n"
-"\n"
-" \n"
-" \n"
-"\n"
+" \n"
+" \n"
+"\t \n"
+"\t \n"
+"\t \n"
+"\t \n"
+" \n"
+"\n"
+" \n"
" \n"
"\n"
" \n"
-"\n"
+"\n"
+" \n"
" \n"
-" \n"
-" \n"
-"\t \n"
-"\t \n"
-"\t \n"
-"\t \n"
+"\n"
+" \n"
+" \n"
+"\n"
+" \n"
+"\n"
" \n"
"\n"
-" \n"
-"\n"
+" \n"
+" \n"
+"\n"
-" \n"
-" \n"
+"\t \n"
+"\t \n"
+"\t \n"
" \n"
-"\n"
-" \n"
-" \n"
+"\n"
" \n"
-"\n"
-" \n"
-" \n"
+"\n"
" \n"
-" \n"
-"\t \n"
-"\t \n"
-"\t \n"
-"\t \n"
+" \n"
+" \n"
+"\n"
+" \n"
+"\n"
" \n"
-"\n"
+"\n"
+" \n"
" \n"
-"\n"
-" \n"
-" \n"
+" \n"
+" \n"
+"\t \n"
+"\t \n"
+"\t \n"
"\t \n"
-"\t \n"
-"\t \n"
-"\t \n"
-"\t \n"
-"\t \n"
-"\t \n"
+"\t \n"
+" \n"
+"\n"
+" \n"
+" \n"
"\t \n"
-"\t \n"
-"\t \n"
-"\t \n"
+"\t \n"
+" \n"
+"\n"
-" \n"
+"\t \n"
+"\t \n"
"\t \n"
-"\t \n"
-" \n"
-" \n"
+"\t \n"
+"\t \n"
+"\t \n"
"\t \n"
"\t \n"
"\t \n"
"\t \n"
"\t \n"
-"\t \n"
-"\t \n"
+"\t \n"
+" \n"
"\t \n"
-"\t \n"
-"\t \n"
-"\t \n"
+"\t \n"
+" \n"
+" \n"
"\t \n"
"\t \n"
"\t \n"
@@ -36272,166 +36408,177 @@ msgid ""
"\t \n"
"\t \n"
"\t \n"
-"\t \n"
-" \n"
+"\t \n"
+"\t \n"
"\t \n"
-"\t \n"
-" \n"
-"\n"
-" \n"
-"\n"
-" \n"
+"\t \n"
+"\t \n"
+"\t \n"
+"\t \n"
+"\t \n"
+"\t \n"
+"\t \n"
+"\t \n"
"\t \n"
-" \n"
-" \n"
+"\n"
-"\n"
-" \n"
-" \n"
-"\t \n"
-"\t \n"
-"\t \n"
-"\t \n"
-"\t \n"
-"\t \n"
+" \n"
+"\n"
+" \n"
+"\n"
+"\n"
+" \n"
+"\n"
"\n"
+"\t \n"
+" \n"
"\n"
-" \n"
-" \n"
+"\t \n"
+"\t \n"
+"\t \n"
"\t \n"
"\t \n"
-"\t \n"
-"\t \n"
-"\n"
-"\n"
+"\t \n"
+"\n"
+"\n"
+" \n"
" \n"
"\t \n"
"\t \n"
"\t \n"
"\t \n"
-" \n"
-" test ¡Ètest description in natural language¡É do ¡Ä "
-"end \n"
-"\n"
-" \n"
+"\n"
+"\n"
+" \n"
+"\t \n"
+"\t \n"
"\t \n"
"\t \n"
" \n"
"\n"
-" test ¡Ètest description in natural language¡É do ¡Ä "
+"end \n"
-" \n"
-" \n"
-"\t \n"
-"\t \n"
+"\n"
+"\n"
-" \n"
-"\t \n"
-"\t \n"
-"\t \n"
+" \n"
+"\n"
+"\n"
-"\n"
-"\n"
-" \n"
-" \n"
-"\t \n"
+" \n"
+" \n"
+"\t \n"
+"\t \n"
+"\t \n"
+"\t \n"
+" \n"
"\t \n"
"\t \n"
"\t \n"
-"\t \n"
-"\t \n"
-" \n"
-"\t \n"
-"\t \n"
-"\t \n"
-"\t \n"
-"\n"
-"\n"
+"\n"
+"\n"
+" \n"
+" \n"
+"\t \n"
+"\t \n"
+"\t \n"
"\t \n"
"\t \n"
"\t \n"
-" \n"
-"\n"
-"\n"
-"\n"
+" \n"
+"\t \n"
+"\t \n"
+"\t \n"
+"\t \n"
"\n"
-"\n"
-"\n"
-" \n"
-"\n"
-"\n"
+"\n"
+" \n"
+"\n"
+"\n"
+"\n"
+" \n"
"\t \n"
-"\t \n"
-"\t \n"
-"\t \n"
+"\t \n"
+"\n"
+" \n"
"\t \n"
-"\t \n"
-"\t \n"
-"\t \n"
-"\t \n"
+"\t \n"
+" \n"
+"\n"
+" \n"
"\t \n"
"\t \n"
"\t \n"
"\t \n"
"\t \n"
"\t \n"
-"\t \n"
-"\n"
-"\n"
-" \n"
-"\n"
-" \n"
+"\t \n"
+"\t \n"
+"\t \n"
+"\t \n"
+"\t \n"
+"\t \n"
+"\t \n"
"\t \n"
"\t \n"
"\t \n"
"\t \n"
-"\t \n"
-"\t \n"
-"\t \n"
-"\t \n"
-"\t \n"
-"\t \n"
-"\t \n"
+"\t \n"
+"\n"
+"\n"
+" \n"
+"\n"
+"\n"
-"\n"
-" \n"
+"\t \n"
+"\t \n"
+"\t \n"
"\t \n"
"\t \n"
-"\t \n"
-" \n"
-"\n"
-""
+"\t \n"
+"\t \n"
+"\t \n"
+"\t \n"
+"\t \n"
+"\t \n"
+"\t \n"
+"\n"
+"\n"
+" \n"
+"\n"
+""
msgstr ""
#: doc/reference/en/top-level-namespace.html:6(title)
@@ -36564,7 +36711,7 @@ msgid "#add_run"
msgstr ""
#: doc/reference/en/method_list.html:292(a)
-msgid "#after_cleanup_methods"
+msgid "#after_cleanup_callbacks"
msgstr ""
#: doc/reference/en/method_list.html:294(small)
@@ -36589,11 +36736,11 @@ msgid "Test::Unit::Fixture::ClassMethods"
msgstr ""
#: doc/reference/en/method_list.html:300(a)
-msgid "#after_setup_methods"
+msgid "#after_setup_callbacks"
msgstr ""
#: doc/reference/en/method_list.html:308(a)
-msgid "#after_teardown_methods"
+msgid "#after_teardown_callbacks"
msgstr ""
#: doc/reference/en/method_list.html:326(small)
@@ -36707,15 +36854,15 @@ msgid "#base"
msgstr ""
#: doc/reference/en/method_list.html:812(a)
-msgid "#before_cleanup_methods"
+msgid "#before_cleanup_callbacks"
msgstr ""
#: doc/reference/en/method_list.html:820(a)
-msgid "#before_setup_methods"
+msgid "#before_setup_callbacks"
msgstr ""
#: doc/reference/en/method_list.html:828(a)
-msgid "#before_teardown_methods"
+msgid "#before_teardown_callbacks"
msgstr ""
#: doc/reference/en/method_list.html:836(a)
@@ -37228,15 +37375,15 @@ msgid "#register_attribute_observer"
msgstr ""
#: doc/reference/en/method_list.html:2884(a)
-msgid "#register_cleanup_method"
+msgid "#register_cleanup_callback"
msgstr ""
#: doc/reference/en/method_list.html:2916(a)
-msgid "#register_setup_method"
+msgid "#register_setup_callback"
msgstr ""
#: doc/reference/en/method_list.html:2924(a)
-msgid "#register_teardown_method"
+msgid "#register_teardown_callback"
msgstr ""
#: doc/reference/en/method_list.html:2940(a)
@@ -37424,7 +37571,7 @@ msgid "#unregister_cleanup"
msgstr ""
#: doc/reference/en/method_list.html:3692(a)
-msgid "#unregister_cleanup_method"
+msgid "#unregister_cleanup_callback"
msgstr ""
#: doc/reference/en/method_list.html:3700(a)
@@ -37436,7 +37583,7 @@ msgid "#unregister_setup"
msgstr ""
#: doc/reference/en/method_list.html:3716(a)
-msgid "#unregister_setup_method"
+msgid "#unregister_setup_callback"
msgstr ""
#: doc/reference/en/method_list.html:3724(a)
@@ -37444,7 +37591,7 @@ msgid "#unregister_teardown"
msgstr ""
#: doc/reference/en/method_list.html:3732(a)
-msgid "#unregister_teardown_method"
+msgid "#unregister_teardown_callback"
msgstr ""
#: doc/reference/en/method_list.html:3756(a)
@@ -38015,7 +38162,3 @@ msgstr ""
#: doc/reference/en/_index.html:0(None)
msgid "translator-credits"
msgstr ""
-
-#, fuzzy
-#~ msgid "\"exception\""
-#~ msgstr "ÀâÌÀ"
Modified: doc/text/news.textile (+20 -0)
===================================================================
--- doc/text/news.textile 2012-01-02 19:44:14 +0900 (ae6e147)
+++ doc/text/news.textile 2012-01-02 20:06:22 +0900 (52a9f59)
@@ -1,5 +1,25 @@
h1. News
+h2(#2-4-4). 2.4.4 - 2012-1-2
+
+It's a Rails integration improved release.
+
+h3. Improvements
+
+ * [ui][console] Don't break progress display when a test is failed.
+ * [ui][console] Added markers betwen a failure detail
+ message in progress to improve visibility.
+ * [travis] Dropped Ruby 1.8.6 as a test target. [GitHub:#13]
+ [Patch by Josh Kalderimis]
+ * Supported expected value == 0 case in assert_in_epsilon. [RubyForge#29485]
+ [Reported by Syver Enstad]
+ * Supported a block style setup/teardown/cleanup.
+
+h3. Thanks
+
+ * Josh Kalderimis
+ * Syver Enstad
+
h2(#2-4-3). 2.4.3 - 2011-12-11
h3. Improvements
From null+test-unit ¡÷ clear-code.com Mon Jan 2 06:07:43 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Mon, 02 Jan 2012 20:07:43 +0900
Subject: [test-unit-commit:00148] test-unit/test-unit [master] 2.4.3 ->
2.4.4.
Message-ID: <20120102110756.3E5209A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-02 20:07:43 +0900 (Mon, 02 Jan 2012)
New Revision: 64181bc82766866adcc80d2768c3ce602d668240
Log:
2.4.3 -> 2.4.4.
Modified files:
doc/html/index.html
doc/html/index.html.ja
doc/po/ja.po
Modified: doc/html/index.html (+1 -1)
===================================================================
--- doc/html/index.html 2012-01-02 20:06:22 +0900 (c2ef307)
+++ doc/html/index.html 2012-01-02 20:07:43 +0900 (6d75eef)
@@ -88,7 +88,7 @@ require "test/unit"
test-unit: The latest release
- 2.4.3 is the latest release. It had been released at 2011-12-11.
+ 2.4.4 is the latest release. It had been released at 2011-1-2.
test-unit: Install
Modified: doc/html/index.html.ja (+1 -1)
===================================================================
--- doc/html/index.html.ja 2012-01-02 20:06:22 +0900 (be05211)
+++ doc/html/index.html.ja 2012-01-02 20:07:43 +0900 (0dce13b)
@@ -101,7 +101,7 @@ require "test/unit"
test-unit¤ÎºÇ¿·¥ê¥ê¡¼¥¹
- 2011-12-11¤Ë¥ê¥ê¡¼¥¹¤µ¤ì¤¿2.4.3 ¤¬ºÇ¿·¥ê¥ê¡¼¥¹¤Ç¤¹¡£
+ 2011-1-2¤Ë¥ê¥ê¡¼¥¹¤µ¤ì¤¿2.4.4 ¤¬ºÇ¿·¥ê¥ê¡¼¥¹¤Ç¤¹¡£
test-unit¤Î¥¤¥ó¥¹¥È¡¼¥ë
Modified: doc/po/ja.po (+2 -2)
===================================================================
--- doc/po/ja.po 2012-01-02 20:06:22 +0900 (514d62a)
+++ doc/po/ja.po 2012-01-02 20:07:43 +0900 (a89f3a7)
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: test-unit 2.3.1\n"
"POT-Creation-Date: 2012-01-02 20:04+0900\n"
-"PO-Revision-Date: 2012-01-02 20:06+0900\n"
+"PO-Revision-Date: 2012-01-02 20:07+0900\n"
"Last-Translator: Kouhei Sutou \n"
"Language-Team: Japanese\n"
"Language: ja\n"
@@ -35231,7 +35231,7 @@ msgstr ""
#: doc/reference/en/file.news.html:59(p)
msgid "It¡Çs a Rails integration improved release."
-msgstr ""
+msgstr "Rails¤È°ì½ï¤Ë»È¤¤¤ä¤¹¤¯¤Ê¤Ã¤¿¥ê¥ê¡¼¥¹¤Ç¤¹¡£"
#: doc/reference/en/file.news.html:60(h3)
#: doc/reference/en/file.news.html:77(h3)
From null+test-unit ¡÷ clear-code.com Mon Jan 2 08:42:45 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Mon, 02 Jan 2012 22:42:45 +0900
Subject: [test-unit-commit:00149] test-unit/test-unit [master] add
test-unit-rails entry.
Message-ID: <20120102134256.88C099A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-02 22:42:45 +0900 (Mon, 02 Jan 2012)
New Revision: 87e7eac55e3d2d10d86d147b7b4c581f52d21a09
Log:
add test-unit-rails entry.
Modified files:
doc/html/index.html
doc/html/index.html.ja
Modified: doc/html/index.html (+28 -0)
===================================================================
--- doc/html/index.html 2012-01-02 20:07:43 +0900 (6d75eef)
+++ doc/html/index.html 2012-01-02 22:42:45 +0900 (879f378)
@@ -73,6 +73,7 @@ require "test/unit"
+ test-unit-rails
+
+ This is a Rails adapter for test-unit 2. This also sets RR , a test double library, and Capybara, a library for integration test, up. You can get many features test environment.
+
+ test-unit-rails: The latest release
+
+ 1.0.0 is the latest release. It had been released at 2011-1-2.
+
+ test-unit-rails: Install
+
+ You add the following codes to your Gemfile:
+
group :development, :test do
+ gem 'test-unit-rails'
+end
+
+
+ And you update bundled gems:
+
% bundle update
+
+
+ You change test/test_helper.rb like the following codes:
+
# require 'rails/test_helper'
+require 'test/unit/rails'
+
+
test-unit-full
This is a meta package to use all extension packages described in the below.
@@ -294,6 +320,8 @@ end
test-unit
% git clone https://github.com/test-unit/test-unit.git
+ test-unit-rails
+ % git clone https://github.com/test-unit/test-unit-rails.git
test-unit-full
% git clone https://github.com/test-unit/test-unit-full.git
test-unit-notify
Modified: doc/html/index.html.ja (+28 -0)
===================================================================
--- doc/html/index.html.ja 2012-01-02 20:07:43 +0900 (0dce13b)
+++ doc/html/index.html.ja 2012-01-02 22:42:45 +0900 (6c16d69)
@@ -76,6 +76,7 @@ require "test/unit"
+ test-unit-rails
+
+ Rails¤Çtest-unit 2¤ò»È¤¦¤¿¤á¤Î¥é¥¤¥Ö¥é¥ê¤Ç¤¹¡£¥â¥Ã¥¯µ¡Ç½¤Ê¤É¤ò»È¤¨¤ë¥Æ¥¹¥È¥À¥Ö¥ë¥é¥¤¥Ö¥é¥êRR ¤ÈÅý¹ç¥Æ¥¹¥ÈÍѥ饤¥Ö¥é¥êCapybara¤â°ì½ï¤Ë¥»¥Ã¥È¥¢¥Ã¥×¤¹¤ë¤Î¤Ç¡¢¤¹¤°¤Ë¹âµ¡Ç½¤Ê¥Æ¥¹¥È´Ä¶¤òÍѰդǤ¤Þ¤¹¡£
+
+ test-unit-rails¤ÎºÇ¿·¥ê¥ê¡¼¥¹
+
+ 2012-01-02¤Ë¥ê¥ê¡¼¥¹¤µ¤ì¤¿1.0.0 ¤¬ºÇ¿·¥ê¥ê¡¼¥¹¤Ç¤¹¡£
+
+ test-unit-rails¤Î¥¤¥ó¥¹¥È¡¼¥ë
+
+ ¤Þ¤º¡¢Gemfile¤Ë°Ê²¼¤Î¥³¡¼¥É¤òÄɲ䷤Ƥ¯¤À¤µ¤¤¡£
+
group :development, :test do
+ gem 'test-unit-rails'
+end
+
+
+ ¼¡¤Ëgem¤ò¥¢¥Ã¥×¥Ç¡¼¥È¤·¤Þ¤¹¡£
+
% bundle update
+
+
+ test/test_helper.rb¤ò°Ê²¼¤Î¤è¤¦¤ËÊѹ¹¤·¤¿¤é¥¤¥ó¥¹¥È¡¼¥ë¤Ï´°Î»¤Ç¤¹¡£
+
# require 'rails/test_helper'
+require 'test/unit/rails'
+
+
test-unit-full
°Ê²¼¤Î³ÈÄ¥¥Ñ¥Ã¥±¡¼¥¸¤ò¤Þ¤È¤á¤Æ¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤¿¤á¤Î¥á¥¿¥Ñ¥Ã¥±¡¼¥¸¤Ç¤¹¡£
@@ -309,6 +335,8 @@ end
test-unit
% git clone https://github.com/test-unit/test-unit.git
+ test-unit-rails
+ % git clone https://github.com/test-unit/test-unit-rails.git
test-unit-full
% git clone https://github.com/test-unit/test-unit-full.git
test-unit-notify
From null+test-unit ¡÷ clear-code.com Mon Jan 2 08:45:04 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Mon, 02 Jan 2012 22:45:04 +0900
Subject: [test-unit-commit:00150] test-unit/test-unit-rails [master] [doc]
use test-unit instead of Test::Unit.
Message-ID: <20120102134519.D84F29A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-02 22:45:04 +0900 (Mon, 02 Jan 2012)
New Revision: c08db2630e2618309f5ae8071b73ccac2fd4e439
Log:
[doc] use test-unit instead of Test::Unit.
Modified files:
README.textile
doc/po/ja.po
Modified: README.textile (+3 -3)
===================================================================
--- README.textile 2012-01-02 22:23:48 +0900 (bc5f629)
+++ README.textile 2012-01-02 22:45:04 +0900 (547c94a)
@@ -4,13 +4,13 @@ h1. test-unit-rails
h2. Description
-test-unit-rails is a Rails adapter for Test::Unit 2.x. You can use full Test::Unit 2.x features, "RR":https://rubygems.org/gems/rr integration and "Capybara":https://rubygems.org/gems/capybara integration with test-unit-rails.
+test-unit-rails is a Rails adapter for test-unit 2. You can use full test-unit 2 features, "RR":https://rubygems.org/gems/rr integration and "Capybara":https://rubygems.org/gems/capybara integration with test-unit-rails.
-Rails supports Test::Unit 1.x and MiniTest but doesn't suppot Test::Unit 2.x. Rails with Test::Unit 2.x works but is not fully worked.
+Rails supports Test::Unit bundled in Ruby 1.8 and MiniTest but doesn't suppot test-unit 2. Rails with test-unit 2 works but is not fully worked.
h2. Install
-You need to add the following codes to your Gemfile:
+You add the following codes to your Gemfile:
group :development, :test do
Modified: doc/po/ja.po (+51 -57)
===================================================================
--- doc/po/ja.po 2012-01-02 22:23:48 +0900 (2123fce)
+++ doc/po/ja.po 2012-01-02 22:45:04 +0900 (ac7fe7a)
@@ -5,8 +5,8 @@
msgid ""
msgstr ""
"Project-Id-Version: test-unit-rails 1.0.0\n"
-"POT-Creation-Date: 2012-01-02 22:17+0900\n"
-"PO-Revision-Date: 2012-01-02 22:20+0900\n"
+"POT-Creation-Date: 2012-01-02 22:43+0900\n"
+"PO-Revision-Date: 2012-01-02 22:44+0900\n"
"Last-Translator: Kouhei Sutou \n"
"Language-Team: Japanese\n"
"Language: ja\n"
@@ -447,9 +447,9 @@ msgstr ""
msgid "File: README"
msgstr ""
-#: doc/reference/en/index.html:57(h1) doc/reference/en/index.html:72(span)
+#: doc/reference/en/index.html:57(h1) doc/reference/en/index.html:66(span)
#: doc/reference/en/file.README.html:57(h1)
-#: doc/reference/en/file.README.html:72(span)
+#: doc/reference/en/file.README.html:66(span)
#: doc/reference/en/frames.html:7(title) doc/reference/en/_index.html:6(title)
#: doc/reference/en/_index.html:55(h1)
msgid "test-unit-rails"
@@ -463,132 +463,126 @@ msgstr "Web¥µ¥¤¥È"
msgid "Description"
msgstr "ÀâÌÀ"
-#: doc/reference/en/index.html:62(a) doc/reference/en/file.README.html:62(a)
+#: doc/reference/en/index.html:60(a) doc/reference/en/file.README.html:60(a)
msgid "RR"
msgstr ""
-#: doc/reference/en/index.html:63(a) doc/reference/en/file.README.html:63(a)
+#: doc/reference/en/index.html:60(a) doc/reference/en/file.README.html:60(a)
msgid "Capybara"
msgstr ""
#: doc/reference/en/index.html:60(p) doc/reference/en/file.README.html:60(p)
msgid ""
-"test-unit-rails is a Rails adapter for Test::Unit 2.¡ß. You can use full "
-"Test::Unit 2.x features, integration and "
+"test-unit-rails is a Rails adapter for test-unit 2. You can use full test-"
+"unit 2 features, integration and "
"integration with test-unit-rails."
-msgstr ""
-"test-unit-rails¤ÏTest::Unit2.xÍѤÎRails¥¢¥À¥×¥¿¡¼¤Ç¤¹¡£test-unit-rails¤ò»È¤¦"
-"¤ÈTest::Unit 2.x¤Î¥Õ¥ëµ¡Ç½¤È ¡¦ ¤È¤ÎÏ¢·Èµ¡Ç½¤ò"
-"»È¤¦¤³¤È¤¬¤Ç¤¤Þ¤¹¡£"
+msgstr "test-unit-rails¤Ïtest-unit 2ÍѤÎRails¥¢¥À¥×¥¿¡¼¤Ç¤¹¡£test-unit-rails¤ò»È¤¦¤Ètest-unit 2¤Î¥Õ¥ëµ¡Ç½¤È ¡¦ ¤È¤ÎÏ¢·Èµ¡Ç½¤ò»È¤¦¤³¤È¤¬¤Ç¤¤Þ¤¹¡£"
-#: doc/reference/en/index.html:65(p) doc/reference/en/file.README.html:65(p)
+#: doc/reference/en/index.html:61(p) doc/reference/en/file.README.html:61(p)
msgid ""
-"Rails supports Test::Unit 1.x and MiniTest but doesn¡Çt suppot Test::Unit 2."
-"¡ß. Rails with Test::Unit 2.x works but is not fully worked."
-msgstr ""
-"Rails¤ÏTest::Unit 1.x¤ÈMiniTest¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤¹¤¬Test::Unit 2.x¤Ï¥µ¥Ý¡¼¥È"
-"¤·¤Æ¤¤¤Þ¤»¤ó¡£Rails¤ÈTest::Unit 2.x¤ÎÁȤ߹ç¤ï¤»¤Ïư¤¤Þ¤¹¤¬¡¢´°Á´¤Ëư¤¯¤È¤¤¤¦"
-"¤ï¤±¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£"
+"Rails supports Test::Unit bundled in Ruby 1.8 and MiniTest but doesn¡Çt "
+"suppot test-unit 2. Rails with test-unit 2 works but is not fully worked."
+msgstr "Rails¤ÏRuby 1.8¤ËƱº¤µ¤ì¤Æ¤¤¤ëTest::Unit¤ÈMiniTest¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤¹¤¬test-unit 2¤Ï¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó¡£Rails¤Ètest-unit 2¤ÎÁȤ߹ç¤ï¤»¤Ïư¤¤Þ¤¹¤¬¡¢´°Á´¤Ëư¤¯¤È¤¤¤¦¤ï¤±¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£"
-#: doc/reference/en/index.html:68(h2) doc/reference/en/file.README.html:68(h2)
+#: doc/reference/en/index.html:62(h2) doc/reference/en/file.README.html:62(h2)
msgid "Install"
msgstr "¥¤¥ó¥¹¥È¡¼¥ë"
-#: doc/reference/en/index.html:69(p) doc/reference/en/file.README.html:69(p)
-msgid "You need to add the following codes to your Gemfile:"
+#: doc/reference/en/index.html:63(p) doc/reference/en/file.README.html:63(p)
+msgid "You add the following codes to your Gemfile:"
msgstr "°Ê²¼¤Î¥³¡¼¥É¤òGemfile¤ËÄɲ䷤Ƥ¯¤À¤µ¤¤¡£"
-#: doc/reference/en/index.html:71(span)
-#: doc/reference/en/file.README.html:71(span)
+#: doc/reference/en/index.html:65(span)
+#: doc/reference/en/file.README.html:65(span)
msgid "group"
msgstr ""
-#: doc/reference/en/index.html:71(span)
-#: doc/reference/en/file.README.html:71(span)
+#: doc/reference/en/index.html:65(span)
+#: doc/reference/en/file.README.html:65(span)
msgid ":development"
msgstr ""
-#: doc/reference/en/index.html:71(span)
-#: doc/reference/en/file.README.html:71(span)
+#: doc/reference/en/index.html:65(span)
+#: doc/reference/en/file.README.html:65(span)
msgid ","
msgstr ""
-#: doc/reference/en/index.html:71(span)
-#: doc/reference/en/file.README.html:71(span)
+#: doc/reference/en/index.html:65(span)
+#: doc/reference/en/file.README.html:65(span)
msgid ":test"
msgstr ""
-#: doc/reference/en/index.html:71(span)
-#: doc/reference/en/file.README.html:71(span)
+#: doc/reference/en/index.html:65(span)
+#: doc/reference/en/file.README.html:65(span)
msgid "do"
msgstr ""
-#: doc/reference/en/index.html:72(span)
-#: doc/reference/en/file.README.html:72(span)
+#: doc/reference/en/index.html:66(span)
+#: doc/reference/en/file.README.html:66(span)
msgid "gem"
msgstr ""
-#: doc/reference/en/index.html:72(span) doc/reference/en/index.html:83(span)
-#: doc/reference/en/file.README.html:72(span)
-#: doc/reference/en/file.README.html:83(span)
+#: doc/reference/en/index.html:66(span) doc/reference/en/index.html:76(span)
+#: doc/reference/en/file.README.html:66(span)
+#: doc/reference/en/file.README.html:76(span)
msgid "'"
msgstr ""
-#: doc/reference/en/index.html:73(span)
-#: doc/reference/en/file.README.html:73(span)
+#: doc/reference/en/index.html:67(span)
+#: doc/reference/en/file.README.html:67(span)
msgid "end"
msgstr ""
-#: doc/reference/en/index.html:75(p) doc/reference/en/file.README.html:75(p)
+#: doc/reference/en/index.html:69(p) doc/reference/en/file.README.html:69(p)
msgid "And you update bundled gems:"
msgstr "¥Ð¥ó¥É¥ë¤¹¤ëgem¤ò¥¢¥Ã¥×¥Ç¡¼¥È¤·¤Þ¤¹¡£"
-#: doc/reference/en/index.html:76(pre)
-#: doc/reference/en/file.README.html:76(pre)
+#: doc/reference/en/index.html:70(pre)
+#: doc/reference/en/file.README.html:70(pre)
msgid "% bundle update"
msgstr ""
-#: doc/reference/en/index.html:79(code)
-#: doc/reference/en/file.README.html:79(code)
+#: doc/reference/en/index.html:73(code)
+#: doc/reference/en/file.README.html:73(code)
msgid "\"require 'rails/test_help'\""
msgstr ""
-#: doc/reference/en/index.html:79(p) doc/reference/en/file.README.html:79(p)
+#: doc/reference/en/index.html:73(p) doc/reference/en/file.README.html:73(p)
msgid ""
"You replace in your test/test_helper.rb with the following "
"codes:"
msgstr "test/test_helper.rbÆâ¤Î ¤ò°Ê²¼¤Î¥³¡¼¥É¤ÇÃÖ¤´¹¤¨¤Þ¤¹¡£"
-#: doc/reference/en/index.html:82(span)
-#: doc/reference/en/file.README.html:82(span)
+#: doc/reference/en/index.html:75(span)
+#: doc/reference/en/file.README.html:75(span)
msgid "# require 'rails/test_help'"
msgstr ""
-#: doc/reference/en/index.html:83(span)
-#: doc/reference/en/file.README.html:83(span)
+#: doc/reference/en/index.html:76(span)
+#: doc/reference/en/file.README.html:76(span)
msgid "require"
msgstr ""
-#: doc/reference/en/index.html:83(span)
-#: doc/reference/en/file.README.html:83(span)
+#: doc/reference/en/index.html:76(span)
+#: doc/reference/en/file.README.html:76(span)
msgid "test/unit/rails"
msgstr ""
-#: doc/reference/en/index.html:85(p) doc/reference/en/file.README.html:85(p)
+#: doc/reference/en/index.html:78(p) doc/reference/en/file.README.html:78(p)
msgid ""
"Now you can use full test-unit 2.x features, RR integration and Capybara "
"integration."
msgstr "¤³¤ì¤ÇTest::Unit 2.x¤Î¥Õ¥ëµ¡Ç½¤ÈRR¡¦Capybara¤È¤ÎÏ¢·Èµ¡Ç½¤ò»È¤¨¤Þ¤¹¡£"
-#: doc/reference/en/index.html:87(h2) doc/reference/en/file.README.html:87(h2)
+#: doc/reference/en/index.html:79(h2) doc/reference/en/file.README.html:79(h2)
msgid "License"
msgstr "¥é¥¤¥»¥ó¥¹"
-#: doc/reference/en/index.html:88(p) doc/reference/en/file.README.html:88(p)
+#: doc/reference/en/index.html:80(p) doc/reference/en/file.README.html:80(p)
msgid "LGPLv2.1 or later."
msgstr "LGPLv2.1¤Þ¤¿¤Ï¤½¤ì°Ê¹ß¤Î¥Ð¡¼¥¸¥ç¥ó¡£"
-#: doc/reference/en/index.html:89(p) doc/reference/en/file.README.html:89(p)
+#: doc/reference/en/index.html:81(p) doc/reference/en/file.README.html:81(p)
msgid ""
"(Kouhei Sutou has a right to change the license including contributed "
"patches.)"
@@ -596,11 +590,11 @@ msgstr ""
"¡Ê¥³¥ó¥È¥ê¥Ó¥å¡¼¥È¤µ¤ì¤¿¥Ñ¥Ã¥Á¤Ê¤É¤â´Þ¤ß¡¢Kouhei Sutou¤¬¥é¥¤¥»¥ó¥¹¤òÊѹ¹¤¹¤ë"
"¸¢Íø¤ò»ý¤Á¤Þ¤¹¡£¡Ë"
-#: doc/reference/en/index.html:91(h2) doc/reference/en/file.README.html:91(h2)
+#: doc/reference/en/index.html:82(h2) doc/reference/en/file.README.html:82(h2)
msgid "Authors"
msgstr "ºî¼Ô"
-#: doc/reference/en/index.html:93(li) doc/reference/en/file.README.html:93(li)
+#: doc/reference/en/index.html:84(li) doc/reference/en/file.README.html:84(li)
msgid "Kouhei Sutou"
msgstr ""
From null+test-unit ¡÷ clear-code.com Mon Jan 2 08:53:52 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Mon, 02 Jan 2012 22:53:52 +0900
Subject: [test-unit-commit:00151] test-unit/test-unit [master] [doc] fix
markup.
Message-ID: <20120102135417.665059A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-02 22:53:52 +0900 (Mon, 02 Jan 2012)
New Revision: 5226ae213bb425c39fb88810f9fc80955d7ed753
Log:
[doc] fix markup.
Modified files:
doc/html/index.html
doc/html/index.html.ja
Modified: doc/html/index.html (+1 -1)
===================================================================
--- doc/html/index.html 2012-01-02 22:42:45 +0900 (879f378)
+++ doc/html/index.html 2012-01-02 22:53:52 +0900 (47b15b0)
@@ -108,7 +108,7 @@ require "test/unit"
test-unit-rails
- This is a Rails adapter for test-unit 2. This also sets RR , a test double library, and Capybara, a library for integration test, up. You can get many features test environment.
+ This is a Rails adapter for test-unit 2. This also sets RR , a test double library, and Capybara , a library for integration test, up. You can get many features test environment.
test-unit-rails: The latest release
Modified: doc/html/index.html.ja (+1 -1)
===================================================================
--- doc/html/index.html.ja 2012-01-02 22:42:45 +0900 (6c16d69)
+++ doc/html/index.html.ja 2012-01-02 22:53:52 +0900 (ecc75ae)
@@ -121,7 +121,7 @@ require "test/unit"
test-unit-rails
- Rails¤Çtest-unit 2¤ò»È¤¦¤¿¤á¤Î¥é¥¤¥Ö¥é¥ê¤Ç¤¹¡£¥â¥Ã¥¯µ¡Ç½¤Ê¤É¤ò»È¤¨¤ë¥Æ¥¹¥È¥À¥Ö¥ë¥é¥¤¥Ö¥é¥êRR ¤ÈÅý¹ç¥Æ¥¹¥ÈÍѥ饤¥Ö¥é¥êCapybara¤â°ì½ï¤Ë¥»¥Ã¥È¥¢¥Ã¥×¤¹¤ë¤Î¤Ç¡¢¤¹¤°¤Ë¹âµ¡Ç½¤Ê¥Æ¥¹¥È´Ä¶¤òÍѰդǤ¤Þ¤¹¡£
+ Rails¤Çtest-unit 2¤ò»È¤¦¤¿¤á¤Î¥é¥¤¥Ö¥é¥ê¤Ç¤¹¡£¥â¥Ã¥¯µ¡Ç½¤Ê¤É¤ò»È¤¨¤ë¥Æ¥¹¥È¥À¥Ö¥ë¥é¥¤¥Ö¥é¥ê RR ¤ÈÅý¹ç¥Æ¥¹¥ÈÍѥ饤¥Ö¥é¥êCapybara ¤â°ì½ï¤Ë¥»¥Ã¥È¥¢¥Ã¥×¤¹¤ë¤Î¤Ç¡¢¤¹¤°¤Ë¹âµ¡Ç½¤Ê¥Æ¥¹¥È´Ä¶¤òÍѰդǤ¤Þ¤¹¡£
test-unit-rails¤ÎºÇ¿·¥ê¥ê¡¼¥¹
From null+test-unit ¡÷ clear-code.com Mon Jan 2 08:55:16 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Mon, 02 Jan 2012 22:55:16 +0900
Subject: [test-unit-commit:00152] test-unit/test-unit [master] [doc] fix
link.
Message-ID: <20120102135650.E55EB9A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-02 22:55:16 +0900 (Mon, 02 Jan 2012)
New Revision: bfcef1f57617c0596f132cfa772ce0cea6dba745
Log:
[doc] fix link.
Modified files:
doc/templates/header.en.html.erb
doc/templates/header.ja.html.erb
Modified: doc/templates/header.en.html.erb (+1 -1)
===================================================================
--- doc/templates/header.en.html.erb 2012-01-02 22:53:52 +0900 (ea9762d)
+++ doc/templates/header.en.html.erb 2012-01-02 22:55:16 +0900 (231c3fe)
@@ -11,7 +11,7 @@
Modified: doc/templates/header.ja.html.erb (+1 -1)
===================================================================
--- doc/templates/header.ja.html.erb 2012-01-02 22:53:52 +0900 (86e1b60)
+++ doc/templates/header.ja.html.erb 2012-01-02 22:55:16 +0900 (9499bb5)
@@ -11,7 +11,7 @@
From null+test-unit ¡÷ clear-code.com Mon Jan 2 09:02:09 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Mon, 02 Jan 2012 23:02:09 +0900
Subject: [test-unit-commit:00153] test-unit/test-unit-rails [master] [doc]
add templates.
Message-ID: <20120102140220.A92429A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-02 23:02:09 +0900 (Mon, 02 Jan 2012)
New Revision: 0b904fedf6bb03a197ca52f895dd1ad0b4586c3d
Log:
[doc] add templates.
Added files:
doc/templates/footer.en.html.erb
doc/templates/footer.ja.html.erb
doc/templates/head.en.html.erb
doc/templates/head.ja.html.erb
doc/templates/header.en.html.erb
doc/templates/header.ja.html.erb
Modified files:
.gitignore
Modified: .gitignore (+1 -0)
===================================================================
--- .gitignore 2012-01-02 22:45:04 +0900 (6f60f74)
+++ .gitignore 2012-01-02 23:02:09 +0900 (bd2146d)
@@ -3,3 +3,4 @@
/.yardoc/
/doc/po/*.pot
/doc/reference/
+/doc/html/test-unit-rails/
Added: doc/templates/footer.en.html.erb (+43 -0) 100644
===================================================================
--- /dev/null
+++ doc/templates/footer.en.html.erb 2012-01-02 23:02:09 +0900 (4849c59)
@@ -0,0 +1,43 @@
+
+
+
Added: doc/templates/footer.ja.html.erb (+38 -0) 100644
===================================================================
--- /dev/null
+++ doc/templates/footer.ja.html.erb 2012-01-02 23:02:09 +0900 (40428c1)
@@ -0,0 +1,38 @@
+
+
+
Added: doc/templates/head.en.html.erb (+4 -0) 100644
===================================================================
--- /dev/null
+++ doc/templates/head.en.html.erb 2012-01-02 23:02:09 +0900 (1810aaa)
@@ -0,0 +1,4 @@
+
+
+
+ <%= title %> - test-unit-rails
Added: doc/templates/head.ja.html.erb (+4 -0) 100644
===================================================================
--- /dev/null
+++ doc/templates/head.ja.html.erb 2012-01-02 23:02:09 +0900 (1810aaa)
@@ -0,0 +1,4 @@
+
+
+
+ <%= title %> - test-unit-rails
Added: doc/templates/header.en.html.erb (+19 -0) 100644
===================================================================
--- /dev/null
+++ doc/templates/header.en.html.erb 2012-01-02 23:02:09 +0900 (2b9a5e7)
@@ -0,0 +1,19 @@
+
+
+
Added: doc/templates/header.ja.html.erb (+19 -0) 100644
===================================================================
--- /dev/null
+++ doc/templates/header.ja.html.erb 2012-01-02 23:02:09 +0900 (b67f092)
@@ -0,0 +1,19 @@
+
+
+
From null+test-unit ¡÷ clear-code.com Mon Jan 2 09:05:56 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Mon, 02 Jan 2012 23:05:56 +0900
Subject: [test-unit-commit:00154] test-unit/test-unit-rails [master] 1.0.0
-> 1.0.1.
Message-ID: <20120102140629.9DE449A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-02 23:05:56 +0900 (Mon, 02 Jan 2012)
New Revision: d35bffcdd924e34acdca4ab98cc48f55db0940ca
Log:
1.0.0 -> 1.0.1.
Modified files:
lib/test/unit/rails/version.rb
Modified: lib/test/unit/rails/version.rb (+1 -1)
===================================================================
--- lib/test/unit/rails/version.rb 2012-01-02 23:02:09 +0900 (6119e6d)
+++ lib/test/unit/rails/version.rb 2012-01-02 23:05:56 +0900 (cbd7bb4)
@@ -18,7 +18,7 @@
module Test
module Unit
module Rails
- VERSION = "1.0.0"
+ VERSION = "1.0.1"
end
end
end
From null+test-unit ¡÷ clear-code.com Mon Jan 2 09:06:02 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Mon, 02 Jan 2012 23:06:02 +0900
Subject: [test-unit-commit:00155] test-unit/test-unit-rails [master] add tag
task.
Message-ID: <20120102140629.B3BCA9A0A0@jenkins.clear-code.com>
Kouhei Sutou 2012-01-02 23:06:02 +0900 (Mon, 02 Jan 2012)
New Revision: d3c22199f93d182f399c8eed2372c8ef7986d3c2
Log:
add tag task.
Modified files:
Rakefile
Modified: Rakefile (+5 -0)
===================================================================
--- Rakefile 2012-01-02 23:05:56 +0900 (1ac6bbb)
+++ Rakefile 2012-01-02 23:06:02 +0900 (b45bf4a)
@@ -69,3 +69,8 @@ end
Packnga::ReleaseTask.new(spec) do |task|
end
+
+desc "Tag the current revision."
+task :tag do
+ sh("git tag -a #{version} -m 'release #{version}!!!'")
+end
From null+test-unit ¡÷ clear-code.com Mon Jan 2 09:06:13 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Mon, 02 Jan 2012 23:06:13 +0900
Subject: [test-unit-commit:00156] test-unit/test-unit-rails [master] add gem
dependencies for development.
Message-ID: <20120102140629.C36229A0A5@jenkins.clear-code.com>
Kouhei Sutou 2012-01-02 23:06:13 +0900 (Mon, 02 Jan 2012)
New Revision: cbc5b5403d75ebe442f98ac7f26925fef6a00f09
Log:
add gem dependencies for development.
Modified files:
Gemfile
Modified: Gemfile (+7 -0)
===================================================================
--- Gemfile 2012-01-02 23:06:02 +0900 (ba2c203)
+++ Gemfile 2012-01-02 23:06:13 +0900 (d737666)
@@ -20,3 +20,10 @@ gem "test-unit"
gem "test-unit-notify"
gem "test-unit-capybara"
gem "test-unit-rr"
+
+group :development do
+ gem "rake"
+ gem "jeweler"
+ gem "yard"
+ gem "packnga"
+end
From null+test-unit ¡÷ clear-code.com Tue Jan 3 00:30:54 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Tue, 03 Jan 2012 14:30:54 +0900
Subject: [test-unit-commit:00157] test-unit/test-unit-rails [master] [doc]
fix a typo.
Message-ID: <20120103053110.B56D09A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-03 14:30:54 +0900 (Tue, 03 Jan 2012)
New Revision: e6147899cff672be0ef9908891f9fb39c7a2b432
Log:
[doc] fix a typo.
Modified files:
README.textile
doc/po/ja.po
Modified: README.textile (+1 -1)
===================================================================
--- README.textile 2012-01-02 23:06:13 +0900 (547c94a)
+++ README.textile 2012-01-03 14:30:54 +0900 (531f64d)
@@ -6,7 +6,7 @@ h2. Description
test-unit-rails is a Rails adapter for test-unit 2. You can use full test-unit 2 features, "RR":https://rubygems.org/gems/rr integration and "Capybara":https://rubygems.org/gems/capybara integration with test-unit-rails.
-Rails supports Test::Unit bundled in Ruby 1.8 and MiniTest but doesn't suppot test-unit 2. Rails with test-unit 2 works but is not fully worked.
+Rails supports Test::Unit bundled in Ruby 1.8 and MiniTest but doesn't support test-unit 2. Rails with test-unit 2 works but is not fully worked.
h2. Install
Modified: doc/po/ja.po (+2 -2)
===================================================================
--- doc/po/ja.po 2012-01-02 23:06:13 +0900 (ac7fe7a)
+++ doc/po/ja.po 2012-01-03 14:30:54 +0900 (7df5ab4)
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: test-unit-rails 1.0.0\n"
"POT-Creation-Date: 2012-01-02 22:43+0900\n"
-"PO-Revision-Date: 2012-01-02 22:44+0900\n"
+"PO-Revision-Date: 2012-01-03 14:30+0900\n"
"Last-Translator: Kouhei Sutou
\n"
"Language-Team: Japanese\n"
"Language: ja\n"
@@ -481,7 +481,7 @@ msgstr "test-unit-rails¤Ïtest-unit 2ÍѤÎRails¥¢¥À¥×¥¿¡¼¤Ç¤¹¡£test-uni
#: doc/reference/en/index.html:61(p) doc/reference/en/file.README.html:61(p)
msgid ""
"Rails supports Test::Unit bundled in Ruby 1.8 and MiniTest but doesn¡Çt "
-"suppot test-unit 2. Rails with test-unit 2 works but is not fully worked."
+"support test-unit 2. Rails with test-unit 2 works but is not fully worked."
msgstr "Rails¤ÏRuby 1.8¤ËƱº¤µ¤ì¤Æ¤¤¤ëTest::Unit¤ÈMiniTest¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤¹¤¬test-unit 2¤Ï¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó¡£Rails¤Ètest-unit 2¤ÎÁȤ߹ç¤ï¤»¤Ïư¤¤Þ¤¹¤¬¡¢´°Á´¤Ëư¤¯¤È¤¤¤¦¤ï¤±¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£"
#: doc/reference/en/index.html:62(h2) doc/reference/en/file.README.html:62(h2)
From null+test-unit ¡÷ clear-code.com Tue Jan 3 23:34:22 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Wed, 04 Jan 2012 13:34:22 +0900
Subject: [test-unit-commit:00158] test-unit/test-unit-rails [master] remove
needless .rb.
Message-ID: <20120104043433.BE0DC9A0A0@jenkins.clear-code.com>
Kouhei Sutou 2012-01-04 13:34:22 +0900 (Wed, 04 Jan 2012)
New Revision: 1b5b4d7bc125a1dccedf2662baae1542ba85877f
Log:
remove needless .rb.
Modified files:
Rakefile
Modified: Rakefile (+1 -1)
===================================================================
--- Rakefile 2012-01-04 13:29:38 +0900 (5cbaf20)
+++ Rakefile 2012-01-04 13:34:22 +0900 (5e8d8eb)
@@ -18,7 +18,7 @@
require 'pathname'
-require './lib/test/unit/rails/version.rb'
+require './lib/test/unit/rails/version'
require 'rubygems'
require 'rubygems/package_task'
From null+test-unit ¡÷ clear-code.com Tue Jan 3 23:29:38 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Wed, 04 Jan 2012 13:29:38 +0900
Subject: [test-unit-commit:00159] test-unit/test-unit-rails [master] fix
licence notification.
Message-ID: <20120104043433.A6B8B9A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-04 13:29:38 +0900 (Wed, 04 Jan 2012)
New Revision: def3096aa15f2f418ddcfb58a32ea08cfeffac1c
Log:
fix licence notification.
Modified files:
Gemfile
Rakefile
lib/test/unit/rails.rb
lib/test/unit/rails/version.rb
Modified: Gemfile (+3 -2)
===================================================================
--- Gemfile 2012-01-03 14:30:54 +0900 (d737666)
+++ Gemfile 2012-01-04 13:29:38 +0900 (2999377)
@@ -4,7 +4,8 @@
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
-# License version 2.1 as published by the Free Software Foundation.
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -13,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
gem "rails"
gem "test-unit"
Modified: Rakefile (+4 -3)
===================================================================
--- Rakefile 2012-01-03 14:30:54 +0900 (b45bf4a)
+++ Rakefile 2012-01-04 13:29:38 +0900 (5cbaf20)
@@ -4,7 +4,8 @@
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
-# License version 2.1 as published by the Free Software Foundation.
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -13,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
require 'pathname'
@@ -43,7 +44,7 @@ Jeweler::Tasks.new do |_spec|
entries = File.read("README.textile").split(/^h2\.\s(.*)$/)
description = cleanup_white_space(entries[entries.index("Description") + 1])
spec.summary, spec.description, = description.split(/\n\n+/, 3)
- spec.license = "LGPLv2"
+ spec.license = "LGPLv2 or later"
spec.files = FileList["{lib,benchmark,misc}/**/*.rb",
"bin/*",
"README",
Modified: lib/test/unit/rails.rb (+4 -3)
===================================================================
--- lib/test/unit/rails.rb 2012-01-03 14:30:54 +0900 (b48487e)
+++ lib/test/unit/rails.rb 2012-01-04 13:29:38 +0900 (56cdb6e)
@@ -1,10 +1,11 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 20121 Kouhei Sutou
+# Copyright (C) 2012 Kouhei Sutou
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
-# License version 2.1 as published by the Free Software Foundation.
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -13,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
require "test/unit/rails/version"
Modified: lib/test/unit/rails/version.rb (+4 -3)
===================================================================
--- lib/test/unit/rails/version.rb 2012-01-03 14:30:54 +0900 (cbd7bb4)
+++ lib/test/unit/rails/version.rb 2012-01-04 13:29:38 +0900 (560a662)
@@ -1,10 +1,11 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 20121 Kouhei Sutou
+# Copyright (C) 2012 Kouhei Sutou
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
-# License version 2.1 as published by the Free Software Foundation.
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -13,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
module Test
module Unit
From null+test-unit ¡÷ clear-code.com Tue Jan 3 23:47:39 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Wed, 04 Jan 2012 13:47:39 +0900
Subject: [test-unit-commit:00160] test-unit/test-unit-rails [master] fix
homepage URL.
Message-ID: <20120104044807.6BB779A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-04 13:47:39 +0900 (Wed, 04 Jan 2012)
New Revision: 62c040d9b9df5dabcf2afabe19100f172bb6de7a
Log:
fix homepage URL.
Modified files:
Rakefile
Modified: Rakefile (+1 -1)
===================================================================
--- Rakefile 2012-01-04 13:34:22 +0900 (5e8d8eb)
+++ Rakefile 2012-01-04 13:47:39 +0900 (5c211e6)
@@ -38,7 +38,7 @@ Jeweler::Tasks.new do |_spec|
spec.name = "test-unit-rails"
spec.version = version
spec.rubyforge_project = "test-unit"
- spec.homepage = "http://test-unit.rubyforge.org/"
+ spec.homepage = "http://test-unit.rubyforge.org/#test-unit-rails"
spec.authors = ["Kouhei Sutou"]
spec.email = ["kou ¡÷ clear-code.com"]
entries = File.read("README.textile").split(/^h2\.\s(.*)$/)
From null+test-unit ¡÷ clear-code.com Tue Jan 3 23:47:51 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Wed, 04 Jan 2012 13:47:51 +0900
Subject: [test-unit-commit:00161] test-unit/test-unit-rails [master] add
missing files to packages.
Message-ID: <20120104044807.819499A0A0@jenkins.clear-code.com>
Kouhei Sutou 2012-01-04 13:47:51 +0900 (Wed, 04 Jan 2012)
New Revision: 2b20d69246d2beda99a1f018af936371ecba62c7
Log:
add missing files to packages.
Modified files:
Rakefile
Modified: Rakefile (+2 -1)
===================================================================
--- Rakefile 2012-01-04 13:47:39 +0900 (5c211e6)
+++ Rakefile 2012-01-04 13:47:51 +0900 (03766fd)
@@ -47,7 +47,8 @@ Jeweler::Tasks.new do |_spec|
spec.license = "LGPLv2 or later"
spec.files = FileList["{lib,benchmark,misc}/**/*.rb",
"bin/*",
- "README",
+ "doc/text/*",
+ "README.textile",
"COPYING",
"Rakefile",
"Gemfile"]
From null+test-unit ¡÷ clear-code.com Tue Jan 3 23:50:48 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Wed, 04 Jan 2012 13:50:48 +0900
Subject: [test-unit-commit:00162] test-unit/test-unit [master] [doc] fix
markup.
Message-ID: <20120104045108.432239A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-04 13:50:48 +0900 (Wed, 04 Jan 2012)
New Revision: 7c22c2fe429a70f82443f772bdc6c1ae1e1fd1da
Log:
[doc] fix markup.
Modified files:
lib/test/unit/assertions.rb
Modified: lib/test/unit/assertions.rb (+1 -1)
===================================================================
--- lib/test/unit/assertions.rb 2012-01-02 22:55:16 +0900 (9246362)
+++ lib/test/unit/assertions.rb 2012-01-04 13:50:48 +0900 (1bcbf88)
@@ -86,7 +86,7 @@ module Test
end
##
- # Passes if +expected+ == +actual.
+ # Passes if +expected+ == +actual+.
#
# Note that the ordering of arguments is important, since a helpful
# error message is generated when this one fails that tells you the
From null+test-unit ¡÷ clear-code.com Tue Jan 3 23:32:16 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Wed, 04 Jan 2012 13:32:16 +0900
Subject: [test-unit-commit:00163] test-unit/test-unit-capybara [master] fix
license notification.
Message-ID: <20120104050426.8477D9A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-04 13:32:16 +0900 (Wed, 04 Jan 2012)
New Revision: 678b36c53b88cd1205d64c9572a51244fb451699
Log:
fix license notification.
Modified files:
Rakefile
lib/test/unit/capybara.rb
Modified: Rakefile (+16 -0)
===================================================================
--- Rakefile 2011-06-17 17:15:14 +0900 (4d6ed36)
+++ Rakefile 2012-01-04 13:32:16 +0900 (da47f73)
@@ -1,4 +1,20 @@
# -*- ruby -*-
+#
+# Copyright (C) 2011-2012 Kouhei Sutou
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
require 'pathname'
Modified: lib/test/unit/capybara.rb (+16 -5)
===================================================================
--- lib/test/unit/capybara.rb 2011-06-17 17:15:14 +0900 (c35867c)
+++ lib/test/unit/capybara.rb 2012-01-04 13:32:16 +0900 (344a948)
@@ -1,9 +1,20 @@
-#--
+# -*- ruby -*-
#
-# Author:: Kouhei Sutou
-# Copyright::
-# * Copyright (c) 2011 Kouhei Sutou
-# License:: LGPLv2+
+# Copyright (C) 2011-2012 Kouhei Sutou
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
require 'capybara'
require 'capybara/dsl'
From null+test-unit ¡÷ clear-code.com Wed Jan 4 00:04:10 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Wed, 04 Jan 2012 14:04:10 +0900
Subject: [test-unit-commit:00164] test-unit/test-unit-capybara [master] use
packnga.
Message-ID: <20120104050426.9131D9A0A0@jenkins.clear-code.com>
Kouhei Sutou 2012-01-04 14:04:10 +0900 (Wed, 04 Jan 2012)
New Revision: 3aaef585c3494636d575bfe90678e191696a2c61
Log:
use packnga.
Added files:
.yardopts
Gemfile
README.textile
lib/test/unit/capybara/version.rb
Removed files:
History.txt
Manifest.txt
README.txt
Modified files:
.gitignore
Rakefile
lib/test/unit/capybara.rb
Modified: .gitignore (+2 -0)
===================================================================
--- .gitignore 2012-01-04 13:32:16 +0900 (728eb54)
+++ .gitignore 2012-01-04 14:04:10 +0900 (4fa9ce5)
@@ -1,2 +1,4 @@
/pkg/
/doc/
+/.yardoc/
+/Gemfile.lock
Added: .yardopts (+2 -0) 100644
===================================================================
--- /dev/null
+++ .yardopts 2012-01-04 14:04:10 +0900 (f7f8459)
@@ -0,0 +1,2 @@
+--no-private
+--markup textile
Added: Gemfile (+27 -0) 100644
===================================================================
--- /dev/null
+++ Gemfile 2012-01-04 14:04:10 +0900 (34ff775)
@@ -0,0 +1,27 @@
+# -*- coding: utf-8; mode: ruby -*-
+#
+# Copyright (C) 2012 Kouhei Sutou
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+
+gem "test-unit"
+gem "capybara"
+
+group :development do
+ gem "rake"
+ gem "jeweler"
+ gem "yard"
+ gem "packnga"
+end
Deleted: History.txt (+0 -5) 100644
===================================================================
--- History.txt 2012-01-04 13:32:16 +0900 (30092e1)
+++ /dev/null
@@ -1,5 +0,0 @@
-=== 1.0.0 / 2011-05-01
-
-* 1 major enhancement
-
- * Birthday!
Deleted: Manifest.txt (+0 -6) 100644
===================================================================
--- Manifest.txt 2012-01-04 13:32:16 +0900 (0425b20)
+++ /dev/null
@@ -1,6 +0,0 @@
-COPYING
-History.txt
-Manifest.txt
-README.txt
-Rakefile
-lib/test/unit/capybara.rb
Added: README.textile (+42 -0) 100644
===================================================================
--- /dev/null
+++ README.textile 2012-01-04 14:04:10 +0900 (9e34b05)
@@ -0,0 +1,42 @@
+h1. test-unit-capybara
+
+"Web site":http://test-unit.rubyforge.org/#test-unit-capybara
+
+h2. Description
+
+test-unit-capybara is a Capybara adapter for test-unit 2. You can get "Capybara":https://rubygems.org/gems/capybara integrated Test::Unit::TestCase. It also provides useful assertions for Capybara.
+
+h2. Install
+
+
+% sudo gem install test-unit-capybara
+
+
+h2. Usage
+
+
+require 'test/unit/capybara'
+
+class TestMyRackApplication < Test::Unit::TestCase
+ include Capybara
+
+ def setup
+ Capybara.app = MyRackApplication.new
+ end
+
+ def test_top_page
+ visit("/")
+ assert_equal("Welcome!", find("title").text)
+ end
+end
+
+
+h2. License
+
+LGPLv2.1 or later.
+
+(Kouhei Sutou has a right to change the license including contributed patches.)
+
+h2. Authors
+
+* Kouhei Sutou
Deleted: README.txt (+0 -43) 100644
===================================================================
--- README.txt 2012-01-04 13:32:16 +0900 (a50a5ea)
+++ /dev/null
@@ -1,43 +0,0 @@
-= Test::Unit::Capybara
-
-* http://rubyforge.org/projects/test-unit/
-
-== DESCRIPTION:
-
-test-unit-capybara - Capybara adapter for Test::Unit.
-
-== FEATURES/PROBLEMS:
-
-* This provides Capybara integrated Test::Unit::TestCase.
-
-== INSTALL:
-
-* sudo gem install test-unit-capybara
-
-== USAGE:
-
- require 'test/unit/capybara'
-
- class TestMyRackApplication < Test::Unit::TestCase
- include Capybara
-
- def setup
- Capybara.app = MyRackApplication.new
- end
-
- def test_top_page
- visit("/")
- assert_equal("Welcome!", find("title").text)
- end
- end
-
-== LICENSE:
-
-LGPLv2.1 or later.
-
-(Kouhei Sutou has a right to change the license including
-contributed patches.)
-
-== AUTHORS:
-
-* Kouhei Sutou
Modified: Rakefile (+42 -20)
===================================================================
--- Rakefile 2012-01-04 13:32:16 +0900 (da47f73)
+++ Rakefile 2012-01-04 14:04:10 +0900 (9b67b09)
@@ -16,33 +16,55 @@
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-require 'pathname'
+require './lib/test/unit/capybara/version'
-base_dir = Pathname(__FILE__).dirname.expand_path
-test_unit_dir = (base_dir.parent + "test-unit").expand_path
-test_unit_lib_dir = test_unit_dir + "lib"
-lib_dir = base_dir + "lib"
-
-$LOAD_PATH.unshift(test_unit_lib_dir.to_s)
-$LOAD_PATH.unshift(lib_dir.to_s)
+require 'rubygems'
+require 'rubygems/package_task'
+require 'yard'
+require 'jeweler'
+require 'packnga'
-require 'test/unit/capybara'
+def cleanup_white_space(entry)
+ entry.gsub(/(\A\n+|\n+\z)/, '') + "\n"
+end
-require 'rubygems'
-require 'hoe'
+ENV["VERSION"] ||= Test::Unit::Capybara::VERSION
+version = ENV["VERSION"].dup
+spec = nil
+Jeweler::Tasks.new do |_spec|
+ spec = _spec
+ spec.name = "test-unit-capybara"
+ spec.version = version
+ spec.rubyforge_project = "test-unit"
+ spec.homepage = "http://test-unit.rubyforge.org/#test-unit-capybara"
+ spec.authors = ["Kouhei Sutou"]
+ spec.email = ["kou ¡÷ clear-code.com"]
+ entries = File.read("README.textile").split(/^h2\.\s(.*)$/)
+ description = cleanup_white_space(entries[entries.index("Description") + 1])
+ spec.summary, spec.description, = description.split(/\n\n+/, 3)
+ spec.license = "LGPLv2 or later"
+ spec.files = FileList["lib/**/*.rb",
+ "bin/*",
+ "doc/text/*",
+ "README",
+ "COPYING",
+ "Rakefile",
+ "Gemfile"]
+ spec.test_files = FileList["test/**/*.rb"]
+end
-Test::Unit.run = true
+Rake::Task["release"].prerequisites.clear
+Jeweler::RubygemsDotOrgTasks.new do
+end
-version = Test::Unit::Capybara::VERSION
-ENV["VERSION"] = version
-Hoe.spec('test-unit-capybara') do
- self.version = version
- self.rubyforge_name = "test-unit"
+Gem::PackageTask.new(spec) do |pkg|
+ pkg.need_tar_gz = true
+end
- developer('Kouhei Sutou', 'kou ¡÷ clear-code.com')
+document_task = Packnga::DocumentTask.new(spec) do
+end
- extra_deps << ["test-unit", ">= 2.1.2"]
- extra_deps << ["capybara"]
+Packnga::ReleaseTask.new(spec) do |task|
end
desc "Tag the current revision."
Modified: lib/test/unit/capybara.rb (+2 -2)
===================================================================
--- lib/test/unit/capybara.rb 2012-01-04 13:32:16 +0900 (344a948)
+++ lib/test/unit/capybara.rb 2012-01-04 14:04:10 +0900 (f660e5c)
@@ -16,14 +16,14 @@
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+require "test/unit/capybara/version"
+
require 'capybara'
require 'capybara/dsl'
require 'test/unit'
module Test::Unit
module Capybara
- VERSION = "1.0.1"
-
module Adapter
class << self
def included(mod)
Added: lib/test/unit/capybara/version.rb (+25 -0) 100644
===================================================================
--- /dev/null
+++ lib/test/unit/capybara/version.rb 2012-01-04 14:04:10 +0900 (266c0d8)
@@ -0,0 +1,25 @@
+# -*- ruby -*-
+#
+# Copyright (C) 2011-2012 Kouhei Sutou
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+
+module Test
+ module Unit
+ module Capybara
+ VERSION = "1.0.1"
+ end
+ end
+end
From null+test-unit ¡÷ clear-code.com Wed Jan 4 04:46:07 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Wed, 04 Jan 2012 18:46:07 +0900
Subject: [test-unit-commit:00165] test-unit/test-unit-capybara [master]
include Capybara::DSL instead of deprecated Capybara.
Message-ID: <20120104094619.E96A09A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-04 18:46:07 +0900 (Wed, 04 Jan 2012)
New Revision: a7a978ce2b6a4f17c047cd90a843539504d49b64
Log:
include Capybara::DSL instead of deprecated Capybara.
Modified files:
README.textile
lib/test/unit/capybara.rb
Modified: README.textile (+1 -1)
===================================================================
--- README.textile 2012-01-04 14:04:10 +0900 (9e34b05)
+++ README.textile 2012-01-04 18:46:07 +0900 (3abdf89)
@@ -18,7 +18,7 @@ h2. Usage
require 'test/unit/capybara'
class TestMyRackApplication < Test::Unit::TestCase
- include Capybara
+ include Capybara::DSL
def setup
Capybara.app = MyRackApplication.new
Modified: lib/test/unit/capybara.rb (+1 -1)
===================================================================
--- lib/test/unit/capybara.rb 2012-01-04 14:04:10 +0900 (f660e5c)
+++ lib/test/unit/capybara.rb 2012-01-04 18:46:07 +0900 (fa35593)
@@ -30,7 +30,7 @@ module Test::Unit
mod.module_eval do
setup :before => :prepend
def setup_capybara
- return unless self.class.include?(::Capybara)
+ return unless self.class.include?(::Capybara::DSL)
extend(Assertions)
if self[:js]
::Capybara.current_driver = ::Capybara.javascript_driver
From null+test-unit ¡÷ clear-code.com Wed Jan 4 04:49:40 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Wed, 04 Jan 2012 18:49:40 +0900
Subject: [test-unit-commit:00166] test-unit/test-unit-capybara [master]
include Capybara::DSL instead of deprecated Capybara.
Message-ID: <20120104094956.3A33A9A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-04 18:49:40 +0900 (Wed, 04 Jan 2012)
New Revision: 9f1e87fc179d2427d111cf36fa7c4da873412aed
Log:
include Capybara::DSL instead of deprecated Capybara.
Modified files:
lib/test/unit/capybara.rb
Modified: lib/test/unit/capybara.rb (+1 -1)
===================================================================
--- lib/test/unit/capybara.rb 2012-01-04 18:46:07 +0900 (fa35593)
+++ lib/test/unit/capybara.rb 2012-01-04 18:49:40 +0900 (21fb6a5)
@@ -41,7 +41,7 @@ module Test::Unit
teardown :after => :append
def teardown_capybara
- return unless self.class.include?(::Capybara)
+ return unless self.class.include?(::Capybara::DSL)
::Capybara.reset_sessions!
::Capybara.use_default_driver
end
From null+test-unit ¡÷ clear-code.com Wed Jan 4 04:50:25 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Wed, 04 Jan 2012 18:50:25 +0900
Subject: [test-unit-commit:00167] test-unit/test-unit-capybara [master]
cleanup assert_body.
Message-ID: <20120104095040.A111C9A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-04 18:50:25 +0900 (Wed, 04 Jan 2012)
New Revision: f21b782586d18c44227232511df85c1e9765b5cb
Log:
cleanup assert_body.
Added files:
test/run-test.rb
Copied files:
test/test-assertions.rb
(from Gemfile)
test/test-unit-capybara-test-utils.rb
(from Gemfile)
Modified files:
Gemfile
lib/test/unit/capybara.rb
Modified: Gemfile (+3 -1)
===================================================================
--- Gemfile 2012-01-04 18:49:40 +0900 (34ff775)
+++ Gemfile 2012-01-04 18:50:25 +0900 (91562a3)
@@ -18,10 +18,12 @@
gem "test-unit"
gem "capybara"
+gem "json"
-group :development do
+group :development, :test do
gem "rake"
gem "jeweler"
gem "yard"
gem "packnga"
+ gem "test-unit-notify"
end
Modified: lib/test/unit/capybara.rb (+75 -17)
===================================================================
--- lib/test/unit/capybara.rb 2012-01-04 18:49:40 +0900 (21fb6a5)
+++ lib/test/unit/capybara.rb 2012-01-04 18:50:25 +0900 (0ea1ea1)
@@ -20,6 +20,7 @@ require "test/unit/capybara/version"
require 'capybara'
require 'capybara/dsl'
+require "json"
require 'test/unit'
module Test::Unit
@@ -51,28 +52,85 @@ module Test::Unit
end
module Assertions
- def assert_body(expected, options={})
+ # Passes if @expected@ == @source ¡÷ . @source@ is a
+ # method provided by Capybara::DSL.
+ #
+ # @source@ may be parsed depended on response
+ # Content-Type before comparing. Here are parsed
+ # Content-Types:
+ #
+ # - @"application/json"@ := It's parsed by @JSON.parse ¡÷ .
+ #
+ # @param [Object] expected the expected body
+ # content. The actual body may be parsed. It
+ # depends on @:content_type@ option.
+ #
+ # @option options [String] :content_type (nil)
+ # the expected Content-Type. If this value is @nil@,
+ # Content-Type will not be compared.
+ #
+ # This value can be specified by abbreviated. Here
+ # are abbreviations:
+ #
+ # - @:json@ := @"application/json"@
+ #
+ # @yield [expected_response, actual_response] the
+ # optional compared responses normalizer.
+ # @yieldparam [Hash] expected_response the expected
+ # response constructed in the method.
+ # @yieldparam [Hash] actual_response the actual
+ # response constructed in the method.
+ # @yieldreturn [expected_response, actual_response] the
+ # normalized compared responses.
+ #
+ # @example Pass case
+ # # Actual response:
+ # # Content-Type: application/json
+ # # Body: {"status": true}
+ # assert_body({"status" => true}, :content_type => :json)
+ #
+ # @example Failure case
+ # # Actual response:
+ # # Content-Type: text/html
+ # # Body: Hello
+ # assert_body("World")
+ def assert_body(expected, options={}, &block)
content_type = options[:content_type]
+ actual_response = {
+ :content_type => page.response_headers["Content-Type"],
+ }
+ actual_response[:body] = parse_body(source,
+ actual_response[:content_type])
+ expected_response = {:body => expected}
+ if content_type
+ expected_response[:content_type] = normalize_content_type(content_type)
+ else
+ actual_response.delete(:content_type)
+ end
+ if block_given?
+ expected_response, actual_response = yield(expected_response,
+ actual_response)
+ end
+ assert_equal(expected_response, actual_response)
+ end
+
+ private
+ def parse_body(source, content_type)
case content_type
- when :json
- assert_equal({
- :content_type => "application/json",
- :body => expected,
- },
- {
- :content_type => page.response_headers["Content-Type"],
- :body => JSON.parse(source),
- })
+ when "application/json"
+ ::JSON.parse(source)
else
- format = "unsupported content type: >\n" +
- "expected: >\n" +
- " options: >"
- arguments = [content_type, expected, options]
- assert_block(build_message(nil, format, *arguments)) do
- false
- end
+ source
end
end
+
+ # @private
+ CONTENT_TYPE_SHORTCUTS = {
+ :json => "application/json",
+ }
+ def normalize_content_type(content_type)
+ CONTENT_TYPE_SHORTCUTS[content_type] || content_type
+ end
end
end
Added: test/run-test.rb (+14 -0) 100755
===================================================================
--- /dev/null
+++ test/run-test.rb 2012-01-04 18:50:25 +0900 (5770310)
@@ -0,0 +1,14 @@
+#!/usr/bin/env ruby
+
+$VERBOSE = true
+
+base_dir = File.expand_path(File.join(File.dirname(__FILE__), ".."))
+lib_dir = File.join(base_dir, "lib")
+test_dir = File.join(base_dir, "test")
+
+$LOAD_PATH.unshift(lib_dir)
+$LOAD_PATH.unshift(test_dir)
+
+require "test-unit-capybara-test-utils"
+
+exit Test::Unit::AutoRunner.run(true, test_dir)
Copied: test/test-assertions.rb (+26 -8) 57%
===================================================================
--- Gemfile 2012-01-04 18:49:40 +0900 (34ff775)
+++ test/test-assertions.rb 2012-01-04 18:50:25 +0900 (dfd0ce7)
@@ -1,4 +1,4 @@
-# -*- coding: utf-8; mode: ruby -*-
+# -*- ruby -*-
#
# Copyright (C) 2012 Kouhei Sutou
#
@@ -16,12 +16,30 @@
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-gem "test-unit"
-gem "capybara"
+require "test-unit-capybara-test-utils"
-group :development do
- gem "rake"
- gem "jeweler"
- gem "yard"
- gem "packnga"
+class AssertionsTest < Test::Unit::TestCase
+ include Capybara::DSL
+
+ class BodyTest < self
+ setup do
+ Capybara.app = lambda do |environment|
+ [
+ 200,
+ {"Content-Type" => "application/json"},
+ [JSON.generate({"status" => true})],
+ ]
+ end
+ end
+
+ def test_with_shortcut_content_type
+ visit("/")
+ assert_body({"status" => true}, :content_type => :json)
+ end
+
+ def test_without_content_type
+ visit("/")
+ assert_body({"status" => true})
+ end
+ end
end
Copied: test/test-unit-capybara-test-utils.rb (+10 -9) 73%
===================================================================
--- Gemfile 2012-01-04 18:49:40 +0900 (34ff775)
+++ test/test-unit-capybara-test-utils.rb 2012-01-04 18:50:25 +0900 (021843f)
@@ -1,4 +1,4 @@
-# -*- coding: utf-8; mode: ruby -*-
+# -*- ruby -*-
#
# Copyright (C) 2012 Kouhei Sutou
#
@@ -16,12 +16,13 @@
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-gem "test-unit"
-gem "capybara"
+require "bundler/setup"
-group :development do
- gem "rake"
- gem "jeweler"
- gem "yard"
- gem "packnga"
-end
+require "test/unit"
+require "test/unit/notify"
+require "test/unit/capybara"
+
+tmp_path = File.expand_path(File.join("tmp", "capybara"), __FILE__)
+Capybara.save_and_open_page_path = tmp_path
+Capybara.default_driver = nil
+Capybara.current_driver = nil
From null+test-unit ¡÷ clear-code.com Wed Jan 4 04:59:53 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Wed, 04 Jan 2012 18:59:53 +0900
Subject: [test-unit-commit:00168] test-unit/test-unit-capybara [master] add
license header.
Message-ID: <20120104100007.1A4C79A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-04 18:59:53 +0900 (Wed, 04 Jan 2012)
New Revision: 907c0c9531f41aff0a762b7cca56ed46769ead16
Log:
add license header.
Modified files:
test/run-test.rb
Modified: test/run-test.rb (+16 -0)
===================================================================
--- test/run-test.rb 2012-01-04 18:50:25 +0900 (5770310)
+++ test/run-test.rb 2012-01-04 18:59:53 +0900 (5175a11)
@@ -1,4 +1,20 @@
#!/usr/bin/env ruby
+#
+# Copyright (C) 2012 Kouhei Sutou
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
$VERBOSE = true
From null+test-unit ¡÷ clear-code.com Wed Jan 4 05:30:00 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Wed, 04 Jan 2012 19:30:00 +0900
Subject: [test-unit-commit:00169] test-unit/test-unit-capybara [master]
assert_body -> assert_page_body.
Message-ID: <20120104103013.D811C9A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-04 19:30:00 +0900 (Wed, 04 Jan 2012)
New Revision: 7edc4d28a5373963d011f998377194ca6844f115
Log:
assert_body -> assert_page_body.
Modified files:
lib/test/unit/capybara.rb
test/test-assertions.rb
Modified: lib/test/unit/capybara.rb (+11 -3)
===================================================================
--- lib/test/unit/capybara.rb 2012-01-04 18:59:53 +0900 (0ea1ea1)
+++ lib/test/unit/capybara.rb 2012-01-04 19:30:00 +0900 (81897e5)
@@ -52,6 +52,14 @@ module Test::Unit
end
module Assertions
+ # @see #assert_page_body
+ # @deprecated since 1.0.0. Use {#assert_page_body} instead.
+ def assert_body(expected, options={}, &block)
+ warn(["deprecated. use assert_page_body instead.",
+ *caller].join("\n"))
+ assert_page_body(*args, &block)
+ end
+
# Passes if @expected@ == @source ¡÷ . @source@ is a
# method provided by Capybara::DSL.
#
@@ -87,14 +95,14 @@ module Test::Unit
# # Actual response:
# # Content-Type: application/json
# # Body: {"status": true}
- # assert_body({"status" => true}, :content_type => :json)
+ # assert_page_body({"status" => true}, :content_type => :json)
#
# @example Failure case
# # Actual response:
# # Content-Type: text/html
# # Body: Hello
- # assert_body("World")
- def assert_body(expected, options={}, &block)
+ # assert_page_body("World")
+ def assert_page_body(expected, options={}, &block)
content_type = options[:content_type]
actual_response = {
:content_type => page.response_headers["Content-Type"],
Modified: test/test-assertions.rb (+2 -2)
===================================================================
--- test/test-assertions.rb 2012-01-04 18:59:53 +0900 (dfd0ce7)
+++ test/test-assertions.rb 2012-01-04 19:30:00 +0900 (2ecdeb9)
@@ -34,12 +34,12 @@ class AssertionsTest < Test::Unit::TestCase
def test_with_shortcut_content_type
visit("/")
- assert_body({"status" => true}, :content_type => :json)
+ assert_page_body({"status" => true}, :content_type => :json)
end
def test_without_content_type
visit("/")
- assert_body({"status" => true})
+ assert_page_body({"status" => true})
end
end
end
From null+test-unit ¡÷ clear-code.com Wed Jan 4 09:20:26 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Wed, 04 Jan 2012 23:20:26 +0900
Subject: [test-unit-commit:00170] test-unit/test-unit [master] remove a
trailing space.
Message-ID: <20120104142043.DD2B69A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-04 23:20:26 +0900 (Wed, 04 Jan 2012)
New Revision: 22a0660e0beb6d2292ab505c36a1c3c2e308497e
Log:
remove a trailing space.
Modified files:
lib/test/unit/assertions.rb
Modified: lib/test/unit/assertions.rb (+1 -1)
===================================================================
--- lib/test/unit/assertions.rb 2012-01-04 13:50:48 +0900 (1bcbf88)
+++ lib/test/unit/assertions.rb 2012-01-04 23:20:26 +0900 (6c04c9b)
@@ -1761,7 +1761,7 @@ EOM
def to_s
message_parts = []
if (@head)
- head = @head.to_s
+ head = @head.to_s
unless(head.empty?)
message_parts << add_period(head)
end
From null+test-unit ¡÷ clear-code.com Thu Jan 5 08:10:30 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Thu, 05 Jan 2012 22:10:30 +0900
Subject: [test-unit-commit:00171] test-unit/test-unit [master] format
exception message as raw text becuase it should be String.
Message-ID: <20120105131053.96DFF9A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-05 22:10:30 +0900 (Thu, 05 Jan 2012)
New Revision: e7b360150ef49bf025dd274a7f44ab029aa79009
Log:
format exception message as raw text becuase it should be String.
Modified files:
lib/test/unit/assertions.rb
test/test-assertions.rb
Modified: lib/test/unit/assertions.rb (+1 -1)
===================================================================
--- lib/test/unit/assertions.rb 2012-01-04 23:20:26 +0900 (6c04c9b)
+++ lib/test/unit/assertions.rb 2012-01-05 22:10:30 +0900 (5753b11)
@@ -1519,7 +1519,7 @@ EOT
when Exception
<
-Message: <#{convert(object.message)}>
+Message: <#{object.message}>
---Backtrace---
#{Util::BacktraceFilter.filter_backtrace(object.backtrace).join("\n")}
---------------
Modified: test/test-assertions.rb (+9 -9)
===================================================================
--- test/test-assertions.rb 2012-01-04 23:20:26 +0900 (f7dc2f0)
+++ test/test-assertions.rb 2012-01-05 22:10:30 +0900 (fccfdcb)
@@ -426,7 +426,7 @@ EOM
failed assert_raise.
exception expected but was
Class:
-Message: <"Error">
+Message:
EOM
check_fails(/\A#{message}#{BACKTRACE_RE}\Z/m) do
assert_raise(ArgumentError, "failed assert_raise") do
@@ -489,7 +489,7 @@ EOM
failed assert_raise.
<[ArgumentError, TypeError]> exception expected but was
Class:
-Message: <"Error">
+Message:
EOM
message = Regexp.escape(message)
check_fails(/\A#{message}#{BACKTRACE_RE}\z/m) do
@@ -516,7 +516,7 @@ EOM
message = <<-EOM
exception expected but was
Class:
-Message: <"Error">
+Message:
EOM
message = Regexp.escape(message)
check_fails(/\A#{message}#{BACKTRACE_RE}\z/) do
@@ -529,7 +529,7 @@ EOM
message = <<-EOM
<\#\\("Error"\\)> exception expected but was
Class:
-Message: <"Error">
+Message:
EOM
check_fails(/\A#{message}#{BACKTRACE_RE}\z/) do
assert_raise(different_error_class.new("Error")) do
@@ -544,7 +544,7 @@ EOM
message = <<-EOM
<\DifferentError: \\"Error\\"> exception expected but was
Class:
-Message: <"Error">
+Message:
EOM
check_fails(/\A#{message}#{BACKTRACE_RE}\z/) do
assert_raise(different_error) do
@@ -715,17 +715,17 @@ EOM
1 + 1
}
}
- check_fails(%r{\AException raised:\nClass: \nMessage: <"Error">\n---Backtrace---\n.+\n---------------\Z}m) {
+ check_fails(%r{\AException raised:\nClass: \nMessage: \n---Backtrace---\n.+\n---------------\Z}m) {
assert_nothing_raised {
raise "Error"
}
}
- check_fails(%r{\Afailed assert_nothing_raised\.\nException raised:\nClass: \nMessage: <"Error">\n---Backtrace---\n.+\n---------------\Z}m) {
+ check_fails(%r{\Afailed assert_nothing_raised\.\nException raised:\nClass: \nMessage: \n---Backtrace---\n.+\n---------------\Z}m) {
assert_nothing_raised("failed assert_nothing_raised") {
raise "Error"
}
}
- check_fails(%r{\AException raised:\nClass: \nMessage: <"Error">\n---Backtrace---\n.+\n---------------\Z}m) {
+ check_fails(%r{\AException raised:\nClass: \nMessage: \n---Backtrace---\n.+\n---------------\Z}m) {
assert_nothing_raised(StandardError, RuntimeError) {
raise "Error"
}
@@ -1136,7 +1136,7 @@ EOM
expected_message = <<-EOM
family exception expected but was
Class:
-Message: <"XXX">
+Message:
---Backtrace---
EOM
check_fails(/\A#{Regexp.escape(expected_message)}(?m).+\z/) do
From null+test-unit ¡÷ clear-code.com Thu Jan 5 08:22:48 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Thu, 05 Jan 2012 22:22:48 +0900
Subject: [test-unit-commit:00172] test-unit/test-unit [master] [test] fix
receiver.
Message-ID: <20120105132301.4846B9A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-05 22:22:48 +0900 (Thu, 05 Jan 2012)
New Revision: e05132227ede57f8687b155f022a94daa97d9955
Log:
[test] fix receiver.
Modified files:
test/test-assertions.rb
Modified: test/test-assertions.rb (+2 -2)
===================================================================
--- test/test-assertions.rb 2012-01-05 22:10:30 +0900 (fccfdcb)
+++ test/test-assertions.rb 2012-01-05 22:22:48 +0900 (880a14f)
@@ -50,12 +50,12 @@ module Test
if expect_fail
case expected_message
when String
- check(actual_message == expected_message,
+ check(expected_message == actual_message,
"Should have the correct message.\n" +
"<#{expected_message.inspect}> expected but was\n" +
"<#{actual_message.inspect}>")
when Regexp
- check(actual_message =~ expected_message,
+ check(expected_message =~ actual_message,
"The message should match correctly.\n" +
"#{expected_message.source}/> expected to match\n" +
"<#{actual_message.inspect}>")
From null+test-unit ¡÷ clear-code.com Thu Jan 5 08:25:27 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Thu, 05 Jan 2012 22:25:27 +0900
Subject: [test-unit-commit:00173] test-unit/test-unit [master] [test] use
option hash style.
Message-ID: <20120105132538.D067A9A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-05 22:25:27 +0900 (Thu, 05 Jan 2012)
New Revision: 752b1bd00fa62e9d3e6689853115837b954ccf30
Log:
[test] use option hash style.
Modified files:
test/test-assertions.rb
Modified: test/test-assertions.rb (+10 -4)
===================================================================
--- test/test-assertions.rb 2012-01-05 22:22:48 +0900 (880a14f)
+++ test/test-assertions.rb 2012-01-05 22:25:27 +0900 (8a00ec7)
@@ -20,8 +20,9 @@ module Test
raise AssertionFailedError.new(message) unless value
end
- def check_assertions(expect_fail, expected_message="",
- return_value_expected=false)
+ def check_assertions(expect_fail, options={})
+ expected_message = options[:expected_message]
+ return_value_expected = options[:return_value_expected]
@actual_assertion_count = 0
failed = true
actual_message = nil
@@ -76,11 +77,16 @@ module Test
end
def check_nothing_fails(return_value_expected=false, &proc)
- check_assertions(false, "", return_value_expected, &proc)
+ check_assertions(false,
+ {:expected_message => nil,
+ :return_value_expected => return_value_expected},
+ &proc)
end
def check_fails(expected_message="", &proc)
- check_assertions(true, expected_message, &proc)
+ check_assertions(true,
+ {:expected_message => expected_message},
+ &proc)
end
def inspect_tag(tag)
From null+test-unit ¡÷ clear-code.com Thu Jan 5 08:36:49 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Thu, 05 Jan 2012 22:36:49 +0900
Subject: [test-unit-commit:00174] test-unit/test-unit [master] [test] don't
use regexp.
Message-ID: <20120105133703.7A0BA9A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-05 22:36:49 +0900 (Thu, 05 Jan 2012)
New Revision: 2082692d14a0c538f6074d2a67aacb82dc8b63f1
Log:
[test] don't use regexp.
Modified files:
test/test-assertions.rb
Modified: test/test-assertions.rb (+24 -13)
===================================================================
--- test/test-assertions.rb 2012-01-05 22:25:27 +0900 (8a00ec7)
+++ test/test-assertions.rb 2012-01-05 22:36:49 +0900 (d1f1499)
@@ -22,6 +22,7 @@ module Test
def check_assertions(expect_fail, options={})
expected_message = options[:expected_message]
+ actual_message_normalizer = options[:actual_message_normalizer]
return_value_expected = options[:return_value_expected]
@actual_assertion_count = 0
failed = true
@@ -49,6 +50,9 @@ module Test
check(1 == @actual_assertion_count, message)
if expect_fail
+ if actual_message_normalizer
+ actual_message = actual_message_normalizer.call(actual_message)
+ end
case expected_message
when String
check(expected_message == actual_message,
@@ -83,9 +87,19 @@ module Test
&proc)
end
- def check_fails(expected_message="", &proc)
+ def check_fails(expected_message, options={}, &proc)
+ check_assertions(true,
+ options.merge(:expected_message => expected_message),
+ &proc)
+ end
+
+ def check_assert_raise_fails(expected_message, options={}, &proc)
+ normalizer = lambda do |actual_message|
+ actual_message.gsub(BACKTRACE_RE, "")
+ end
check_assertions(true,
- {:expected_message => expected_message},
+ options.merge(:expected_message => expected_message,
+ :actual_message_normalizer => normalizer),
&proc)
end
@@ -434,7 +448,7 @@ failed assert_raise.
Class:
Message:
EOM
- check_fails(/\A#{message}#{BACKTRACE_RE}\Z/m) do
+ check_assert_raise_fails(message) do
assert_raise(ArgumentError, "failed assert_raise") do
raise "Error"
end
@@ -497,8 +511,7 @@ failed assert_raise.
Class:
Message:
EOM
- message = Regexp.escape(message)
- check_fails(/\A#{message}#{BACKTRACE_RE}\z/m) do
+ check_assert_raise_fails(message) do
assert_raise(ArgumentError, TypeError, "failed assert_raise") do
raise "Error"
end
@@ -524,8 +537,7 @@ EOM
Class:
Message:
EOM
- message = Regexp.escape(message)
- check_fails(/\A#{message}#{BACKTRACE_RE}\z/) do
+ check_assert_raise_fails(message) do
return_value = assert_raise(RuntimeError.new("XXX")) do
raise "Error"
end
@@ -533,11 +545,11 @@ EOM
different_error_class = Class.new(StandardError)
message = <<-EOM
-<\#\\("Error"\\)> exception expected but was
+<#{different_error_class.inspect}("Error")> exception expected but was
Class:
Message:
EOM
- check_fails(/\A#{message}#{BACKTRACE_RE}\z/) do
+ check_assert_raise_fails(message) do
assert_raise(different_error_class.new("Error")) do
raise "Error"
end
@@ -548,11 +560,11 @@ EOM
"DifferentError: \"Error\""
end
message = <<-EOM
-<\DifferentError: \\"Error\\"> exception expected but was
+ exception expected but was
Class:
Message:
EOM
- check_fails(/\A#{message}#{BACKTRACE_RE}\z/) do
+ check_assert_raise_fails(message) do
assert_raise(different_error) do
raise "Error"
end
@@ -1143,9 +1155,8 @@ EOM
family exception expected but was
Class:
Message:
----Backtrace---
EOM
- check_fails(/\A#{Regexp.escape(expected_message)}(?m).+\z/) do
+ check_assert_raise_fails(expected_message) do
assert_raise_kind_of(SystemCallError) do
raise RuntimeError, "XXX"
end
From null+test-unit ¡÷ clear-code.com Thu Jan 5 08:46:41 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Thu, 05 Jan 2012 22:46:41 +0900
Subject: [test-unit-commit:00175] test-unit/test-unit [master] shorten
exception message.
Message-ID: <20120105134658.7CC0B9A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-05 22:46:41 +0900 (Thu, 05 Jan 2012)
New Revision: d7121a34745d4d53f15ff1dd22386296b27d2d2b
Log:
shorten exception message.
Modified files:
lib/test/unit/assertions.rb
test/test-assertions.rb
Modified: lib/test/unit/assertions.rb (+0 -2)
===================================================================
--- lib/test/unit/assertions.rb 2012-01-05 22:36:49 +0900 (5753b11)
+++ lib/test/unit/assertions.rb 2012-01-05 22:46:41 +0900 (46324ad)
@@ -1520,9 +1520,7 @@ EOT
<
Message: <#{object.message}>
----Backtrace---
#{Util::BacktraceFilter.filter_backtrace(object.backtrace).join("\n")}
----------------
EOM
else
inspector = Inspector.new(object)
Modified: test/test-assertions.rb (+27 -15)
===================================================================
--- test/test-assertions.rb 2012-01-05 22:36:49 +0900 (d1f1499)
+++ test/test-assertions.rb 2012-01-05 22:46:41 +0900 (8265ed6)
@@ -10,10 +10,6 @@ require 'test/unit'
module Test
module Unit
module AssertionCheckable
- backtrace_pre = "---Backtrace---"
- backtrace_post = "---------------"
- BACKTRACE_RE = /#{backtrace_pre}\n.+\n#{backtrace_post}/m
-
private
def check(value, message="")
add_assertion
@@ -93,9 +89,9 @@ module Test
&proc)
end
- def check_assert_raise_fails(expected_message, options={}, &proc)
+ def check_fails_exception(expected_message, options={}, &proc)
normalizer = lambda do |actual_message|
- actual_message.gsub(BACKTRACE_RE, "")
+ actual_message.gsub(/(^[^:]+:\d+:.*\n?)+\z/, "")
end
check_assertions(true,
options.merge(:expected_message => expected_message,
@@ -448,7 +444,7 @@ failed assert_raise.
Class:
Message:
EOM
- check_assert_raise_fails(message) do
+ check_fails_exception(message) do
assert_raise(ArgumentError, "failed assert_raise") do
raise "Error"
end
@@ -511,7 +507,7 @@ failed assert_raise.
Class:
Message:
EOM
- check_assert_raise_fails(message) do
+ check_fails_exception(message) do
assert_raise(ArgumentError, TypeError, "failed assert_raise") do
raise "Error"
end
@@ -537,7 +533,7 @@ EOM
Class:
Message:
EOM
- check_assert_raise_fails(message) do
+ check_fails_exception(message) do
return_value = assert_raise(RuntimeError.new("XXX")) do
raise "Error"
end
@@ -549,7 +545,7 @@ EOM
Class:
Message:
EOM
- check_assert_raise_fails(message) do
+ check_fails_exception(message) do
assert_raise(different_error_class.new("Error")) do
raise "Error"
end
@@ -564,7 +560,7 @@ EOM
Class:
Message:
EOM
- check_assert_raise_fails(message) do
+ check_fails_exception(message) do
assert_raise(different_error) do
raise "Error"
end
@@ -733,17 +729,33 @@ EOM
1 + 1
}
}
- check_fails(%r{\AException raised:\nClass: \nMessage: \n---Backtrace---\n.+\n---------------\Z}m) {
+ expected_message = <<-EOM
+Exception raised:
+Class:
+Message:
+EOM
+ check_fails_exception(expected_message) {
assert_nothing_raised {
raise "Error"
}
}
- check_fails(%r{\Afailed assert_nothing_raised\.\nException raised:\nClass: \nMessage: \n---Backtrace---\n.+\n---------------\Z}m) {
+ expected_message = <<-EOM
+failed assert_nothing_raised.
+Exception raised:
+Class:
+Message:
+EOM
+ check_fails_exception(expected_message) {
assert_nothing_raised("failed assert_nothing_raised") {
raise "Error"
}
}
- check_fails(%r{\AException raised:\nClass: \nMessage: \n---Backtrace---\n.+\n---------------\Z}m) {
+ expected_message = <<-EOM
+Exception raised:
+Class:
+Message:
+EOM
+ check_fails_exception(expected_message) {
assert_nothing_raised(StandardError, RuntimeError) {
raise "Error"
}
@@ -1156,7 +1168,7 @@ EOM
Class:
Message:
EOM
- check_assert_raise_fails(expected_message) do
+ check_fails_exception(expected_message) do
assert_raise_kind_of(SystemCallError) do
raise RuntimeError, "XXX"
end
From null+test-unit ¡÷ clear-code.com Thu Jan 5 08:47:04 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Thu, 05 Jan 2012 22:47:04 +0900
Subject: [test-unit-commit:00176] test-unit/test-unit [master] [test]
check_fails -> check_fail.
Message-ID: <20120105134721.22F089A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-05 22:47:04 +0900 (Thu, 05 Jan 2012)
New Revision: 8bd2085ce4a92b1790a3ae8a8e655fc75147fc69
Log:
[test] check_fails -> check_fail.
Modified files:
test/test-assertions.rb
Modified: test/test-assertions.rb (+134 -134)
===================================================================
--- test/test-assertions.rb 2012-01-05 22:46:41 +0900 (8265ed6)
+++ test/test-assertions.rb 2012-01-05 22:47:04 +0900 (38ae226)
@@ -83,13 +83,13 @@ module Test
&proc)
end
- def check_fails(expected_message, options={}, &proc)
+ def check_fail(expected_message, options={}, &proc)
check_assertions(true,
options.merge(:expected_message => expected_message),
&proc)
end
- def check_fails_exception(expected_message, options={}, &proc)
+ def check_fail_exception(expected_message, options={}, &proc)
normalizer = lambda do |actual_message|
actual_message.gsub(/(^[^:]+:\d+:.*\n?)+\z/, "")
end
@@ -137,10 +137,10 @@ module Test
check_nothing_fails {
assert_block("successful assert_block") {true}
}
- check_fails("assert_block failed.") {
+ check_fail("assert_block failed.") {
assert_block {false}
}
- check_fails("failed assert_block") {
+ check_fail("failed assert_block") {
assert_block("failed assert_block") {false}
}
end
@@ -163,7 +163,7 @@ diff:
+ string2
? ^
EOM
- check_fails(message) {
+ check_fail(message) {
assert_equal("string1", "string2")
}
@@ -178,7 +178,7 @@ diff:
+ string2
? ^
EOM
- check_fails(message) {
+ check_fail(message) {
assert_equal("string1", "string2", "failed assert_equal")
}
@@ -191,7 +191,7 @@ diff:
? - -
+ 111111
EOM
- check_fails(message) do
+ check_fail(message) do
assert_equal("111111", 111111)
end
end
@@ -232,7 +232,7 @@ folded diff:
? ^^^^^^^^^
898123456789
EOM
- check_fails(message) do
+ check_fail(message) do
assert_equal(expected, actual)
end
end
@@ -242,7 +242,7 @@ EOM
<1> expected but was
<2>.
EOM
- check_fails(message) do
+ check_fail(message) do
assert_equal(1, 2)
end
end
@@ -254,7 +254,7 @@ EOM
<#{now.inspect}> expected but was
<#{now.inspect}>.
EOM
- check_fails(message) do
+ check_fail(message) do
assert_equal(now, now_without_usec)
end
end
@@ -269,7 +269,7 @@ diff:
- a
- b
EOM
- check_fails(message) do
+ check_fail(message) do
assert_equal("a\nb", "x")
end
end
@@ -290,7 +290,7 @@ folded diff:
#{(["- " + ("x" * 78)] * 12).join("\n")}
- #{"x" * 61}
EOM
- check_fails(message) do
+ check_fail(message) do
assert_equal("a\n" + "x" * 997, "x")
end
@@ -298,7 +298,7 @@ EOM
<#{("a\n" + "x" * 998).inspect}> expected but was
<#{"x".inspect}>.
EOM
- check_fails(message) do
+ check_fail(message) do
assert_equal("a\n" + "x" * 998, "x")
end
end
@@ -323,7 +323,7 @@ folded diff:
#{(["- " + ("x" * 78)]).join("\n")}
- #{"x" * 19}
EOM
- check_fails(message) do
+ check_fail(message) do
assert_equal("a\n" + "x" * 97, "x")
end
@@ -331,7 +331,7 @@ EOM
<#{("a\n" + "x" * 98).inspect}> expected but was
<#{"x".inspect}>.
EOM
- check_fails(message) do
+ check_fail(message) do
assert_equal("a\n" + "x" * 98, "x")
end
ensure
@@ -349,7 +349,7 @@ EOM
<#{utf8_string.inspect}>("UTF-8") expected but was
<#{ascii_8bit_string.inspect}>("ASCII-8BIT").
EOM
- check_fails(message) do
+ check_fail(message) do
assert_equal(utf8_string, ascii_8bit_string)
end
end
@@ -367,7 +367,7 @@ EOM
<{"Lisp"=>"John McCarthy", "Ruby"=>"Matz"}> expected but was
<{"Heavy"=>["C", "C++"], "LL"=>["Ruby", "Python"]}>.
EOM
- check_fails(message) do
+ check_fail(message) do
assert_equal(designers, categories)
end
end
@@ -387,7 +387,7 @@ diff:
+ {"followers"=>[{"followers"=>[{...}], "name"=>"Alice"}], "name"=>"Bob"}
? +++++++++++++++++
EOM
- check_fails(message) do
+ check_fail(message) do
assert_equal(alice, bob)
end
end
@@ -432,7 +432,7 @@ EOM
end
def test_assert_raise_fail
- check_fails(" exception expected but none was thrown.") do
+ check_fail(" exception expected but none was thrown.") do
assert_raise(RuntimeError) do
1 + 1
end
@@ -444,7 +444,7 @@ failed assert_raise.
Class:
Message:
EOM
- check_fails_exception(message) do
+ check_fail_exception(message) do
assert_raise(ArgumentError, "failed assert_raise") do
raise "Error"
end
@@ -454,7 +454,7 @@ EOM
Should expect a class of exception, Object.
is not true.
EOM
- check_fails(message.chomp) do
+ check_fail(message.chomp) do
assert_nothing_raised(Object) do
1 + 1
end
@@ -494,7 +494,7 @@ EOM
"from a successful assert_raise")
end
- check_fails("<[ArgumentError, TypeError, Math, Comparable]> exception " +
+ check_fail("<[ArgumentError, TypeError, Math, Comparable]> exception " +
"expected but none was thrown.") do
assert_raise(*rescues) do
1 + 1
@@ -507,7 +507,7 @@ failed assert_raise.
Class:
Message:
EOM
- check_fails_exception(message) do
+ check_fail_exception(message) do
assert_raise(ArgumentError, TypeError, "failed assert_raise") do
raise "Error"
end
@@ -533,7 +533,7 @@ EOM
Class:
Message:
EOM
- check_fails_exception(message) do
+ check_fail_exception(message) do
return_value = assert_raise(RuntimeError.new("XXX")) do
raise "Error"
end
@@ -545,7 +545,7 @@ EOM
Class:
Message:
EOM
- check_fails_exception(message) do
+ check_fail_exception(message) do
assert_raise(different_error_class.new("Error")) do
raise "Error"
end
@@ -560,7 +560,7 @@ EOM
Class:
Message:
EOM
- check_fails_exception(message) do
+ check_fail_exception(message) do
assert_raise(different_error) do
raise "Error"
end
@@ -585,20 +585,20 @@ EOM
check_nothing_fails {
assert_instance_of(String, "string", "successful assert_instance_of")
}
- check_fails(%Q{<"string"> expected to be an instance of\n but was\n.}) {
+ check_fail(%Q{<"string"> expected to be an instance of\n but was\n.}) {
assert_instance_of(Hash, "string")
}
- check_fails(%Q{failed assert_instance_of.\n<"string"> expected to be an instance of\n but was\n.}) {
+ check_fail(%Q{failed assert_instance_of.\n<"string"> expected to be an instance of\n but was\n.}) {
assert_instance_of(Hash, "string", "failed assert_instance_of")
}
check_nothing_fails do
assert_instance_of([Fixnum, NilClass], 100)
end
- check_fails(%Q{<"string"> expected to be an instance of\n[, ] but was\n.}) do
+ check_fail(%Q{<"string"> expected to be an instance of\n[, ] but was\n.}) do
assert_instance_of([Fixnum, NilClass], "string")
end
- check_fails(%Q{<100> expected to be an instance of\n[, ] but was\n.}) do
+ check_fail(%Q{<100> expected to be an instance of\n[, ] but was\n.}) do
assert_instance_of([Numeric, NilClass], 100)
end
end
@@ -613,10 +613,10 @@ EOM
check_nothing_fails {
assert_nil(nil, "successful assert_nil")
}
- check_fails(%Q{<"string"> expected to be nil.}) {
+ check_fail(%Q{<"string"> expected to be nil.}) {
assert_nil("string")
}
- check_fails(%Q{failed assert_nil.\n<"string"> expected to be nil.}) {
+ check_fail(%Q{failed assert_nil.\n<"string"> expected to be nil.}) {
assert_nil("string", "failed assert_nil")
}
end
@@ -624,8 +624,8 @@ EOM
def test_assert_not_nil
check_nothing_fails{assert_not_nil(false)}
check_nothing_fails{assert_not_nil(false, "message")}
- check_fails(" expected to not be nil."){assert_not_nil(nil)}
- check_fails("message.\n expected to not be nil.") {assert_not_nil(nil, "message")}
+ check_fail(" expected to not be nil."){assert_not_nil(nil)}
+ check_fail("message.\n expected to not be nil.") {assert_not_nil(nil, "message")}
end
def test_assert_kind_of
@@ -641,17 +641,17 @@ EOM
check_nothing_fails {
assert_kind_of(Comparable, 1)
}
- check_fails(%Q{<"string"> expected to be kind_of?\n but was\n.}) {
+ check_fail(%Q{<"string"> expected to be kind_of?\n but was\n.}) {
assert_kind_of(Class, "string")
}
- check_fails(%Q{failed assert_kind_of.\n<"string"> expected to be kind_of?\n but was\n.}) {
+ check_fail(%Q{failed assert_kind_of.\n<"string"> expected to be kind_of?\n but was\n.}) {
assert_kind_of(Class, "string", "failed assert_kind_of")
}
check_nothing_fails do
assert_kind_of([Fixnum, NilClass], 100)
end
- check_fails(%Q{<"string"> expected to be kind_of?\n[, ] but was\n.}) do
+ check_fail(%Q{<"string"> expected to be kind_of?\n[, ] but was\n.}) do
assert_kind_of([Fixnum, NilClass], "string")
end
end
@@ -669,13 +669,13 @@ EOM
check_nothing_fails {
assert_match(/strin./, "string", "successful assert_match")
}
- check_fails(%Q{<"string"> expected to be =~\n.}) {
+ check_fail(%Q{<"string"> expected to be =~\n.}) {
assert_match(/slin./, "string")
}
- check_fails(%Q{<"string"> expected to be =~\n.}) {
+ check_fail(%Q{<"string"> expected to be =~\n.}) {
assert_match("strin.", "string")
}
- check_fails(%Q{failed assert_match.\n<"string"> expected to be =~\n.}) {
+ check_fail(%Q{failed assert_match.\n<"string"> expected to be =~\n.}) {
assert_match(/slin./, "string", "failed assert_match")
}
end
@@ -692,10 +692,10 @@ EOM
assert_same(thing, thing, "successful assert_same")
}
thing2 = "thing"
- check_fails(%Q{<"thing">\nwith id <#{thing.__id__}> expected to be equal? to\n<"thing">\nwith id <#{thing2.__id__}>.}) {
+ check_fail(%Q{<"thing">\nwith id <#{thing.__id__}> expected to be equal? to\n<"thing">\nwith id <#{thing2.__id__}>.}) {
assert_same(thing, thing2)
}
- check_fails(%Q{failed assert_same.\n<"thing">\nwith id <#{thing.__id__}> expected to be equal? to\n<"thing">\nwith id <#{thing2.__id__}>.}) {
+ check_fail(%Q{failed assert_same.\n<"thing">\nwith id <#{thing.__id__}> expected to be equal? to\n<"thing">\nwith id <#{thing2.__id__}>.}) {
assert_same(thing, thing2, "failed assert_same")
}
end
@@ -724,7 +724,7 @@ EOM
rescue ZeroDivisionError
end
}
- check_fails("Should expect a class of exception, Object.\n is not true.") {
+ check_fail("Should expect a class of exception, Object.\n is not true.") {
assert_nothing_raised(Object) {
1 + 1
}
@@ -734,7 +734,7 @@ Exception raised:
Class:
Message:
EOM
- check_fails_exception(expected_message) {
+ check_fail_exception(expected_message) {
assert_nothing_raised {
raise "Error"
}
@@ -745,7 +745,7 @@ Exception raised:
Class:
Message:
EOM
- check_fails_exception(expected_message) {
+ check_fail_exception(expected_message) {
assert_nothing_raised("failed assert_nothing_raised") {
raise "Error"
}
@@ -755,12 +755,12 @@ Exception raised:
Class:
Message:
EOM
- check_fails_exception(expected_message) {
+ check_fail_exception(expected_message) {
assert_nothing_raised(StandardError, RuntimeError) {
raise "Error"
}
}
- check_fails("Failure.") do
+ check_fail("Failure.") do
assert_nothing_raised do
flunk("Failure")
end
@@ -768,10 +768,10 @@ EOM
end
def test_flunk
- check_fails("Flunked.") {
+ check_fail("Flunked.") {
flunk
}
- check_fails("flunk message.") {
+ check_fail("flunk message.") {
flunk("flunk message")
}
end
@@ -785,10 +785,10 @@ EOM
check_nothing_fails {
assert_not_same(thing, thing2, "message")
}
- check_fails(%Q{<"thing">\nwith id <#{thing.__id__}> expected to not be equal? to\n<"thing">\nwith id <#{thing.__id__}>.}) {
+ check_fail(%Q{<"thing">\nwith id <#{thing.__id__}> expected to not be equal? to\n<"thing">\nwith id <#{thing.__id__}>.}) {
assert_not_same(thing, thing)
}
- check_fails(%Q{message.\n<"thing">\nwith id <#{thing.__id__}> expected to not be equal? to\n<"thing">\nwith id <#{thing.__id__}>.}) {
+ check_fail(%Q{message.\n<"thing">\nwith id <#{thing.__id__}> expected to not be equal? to\n<"thing">\nwith id <#{thing.__id__}>.}) {
assert_not_same(thing, thing, "message")
}
end
@@ -800,10 +800,10 @@ EOM
check_nothing_fails {
assert_not_equal("string1", "string2", "message")
}
- check_fails(%Q{<"string"> expected to be != to\n<"string">.}) {
+ check_fail(%Q{<"string"> expected to be != to\n<"string">.}) {
assert_not_equal("string", "string")
}
- check_fails(%Q{message.\n<"string"> expected to be != to\n<"string">.}) {
+ check_fail(%Q{message.\n<"string"> expected to be != to\n<"string">.}) {
assert_not_equal("string", "string", "message")
}
end
@@ -821,7 +821,7 @@ EOM
end
def test_assert_not_match_fail_not_regexp
- check_fails(" in assert_not_match(, ...) " +
+ check_fail(" in assert_not_match(, ...) " +
"should be a Regexp.\n" +
"<\"asdf\"> expected to be an instance of\n" +
" but was\n" +
@@ -831,14 +831,14 @@ EOM
end
def test_assert_not_match_fail_match
- check_fails(" expected to not match\n" +
+ check_fail(" expected to not match\n" +
"<\"string\">.") do
assert_not_match(/string/, "string")
end
end
def test_assert_not_match_fail_match_with_message
- check_fails("message.\n" +
+ check_fail("message.\n" +
" expected to not match\n" +
"<\"string\">.") do
assert_not_match(/string/, "string", "message")
@@ -848,13 +848,13 @@ EOM
def test_assert_no_match
check_nothing_fails{assert_no_match(/sling/, "string")}
check_nothing_fails{assert_no_match(/sling/, "string", "message")}
- check_fails(%Q{The first argument to assert_no_match should be a Regexp.\n<"asdf"> expected to be an instance of\n but was\n.}) do
+ check_fail(%Q{The first argument to assert_no_match should be a Regexp.\n<"asdf"> expected to be an instance of\n but was\n.}) do
assert_no_match("asdf", "asdf")
end
- check_fails(%Q{ expected to not match\n<"string">.}) do
+ check_fail(%Q{ expected to not match\n<"string">.}) do
assert_no_match(/string/, "string")
end
- check_fails(%Q{message.\n expected to not match\n<"string">.}) do
+ check_fail(%Q{message.\n expected to not match\n<"string">.}) do
assert_no_match(/string/, "string", "message")
end
end
@@ -867,14 +867,14 @@ EOM
end
tag = :thing2
- check_fails("message.\n" +
+ check_fail("message.\n" +
"<:thing> expected to be thrown but\n" +
"<#{inspect_tag(tag)}> was thrown.") do
assert_throw(:thing, "message") do
throw :thing2
end
end
- check_fails("message.\n" +
+ check_fail("message.\n" +
"<:thing> should have been thrown.") do
assert_throw(:thing, "message") do
1 + 1
@@ -891,7 +891,7 @@ EOM
tag = :thing
inspected = inspect_tag(tag)
- check_fails("message.\n" +
+ check_fail("message.\n" +
"<#{inspected}> was thrown when nothing was expected.") do
assert_nothing_thrown("message") do
throw tag
@@ -903,10 +903,10 @@ EOM
check_nothing_fails {
assert_operator("thing", :==, "thing", "message")
}
- check_fails(%Q{<0.15>\ngiven as the operator for #assert_operator must be a Symbol or #respond_to?(:to_str).}) do
+ check_fail(%Q{<0.15>\ngiven as the operator for #assert_operator must be a Symbol or #respond_to?(:to_str).}) do
assert_operator("thing", 0.15, "thing")
end
- check_fails(%Q{message.\n<"thing1"> expected to be\n==\n<"thing2">.}) {
+ check_fail(%Q{message.\n<"thing1"> expected to be\n==\n<"thing2">.}) {
assert_operator("thing1", :==, "thing2", "message")
}
end
@@ -918,11 +918,11 @@ EOM
check_nothing_fails {
assert_respond_to("thing", "to_s", "message")
}
- check_fails("<0.15>.kind_of?(Symbol) or\n" +
+ check_fail("<0.15>.kind_of?(Symbol) or\n" +
"<0.15>.respond_to?(:to_str) expected") {
assert_respond_to("thing", 0.15)
}
- check_fails("message.\n" +
+ check_fail("message.\n" +
"<:symbol>.respond_to?(:nonexistence) expected\n" +
"(Class: )") {
assert_respond_to(:symbol, :nonexistence, "message")
@@ -942,14 +942,14 @@ EOM
end
def test_assert_not_respond_to_fail_number
- check_fails("<0.15>.kind_of?(Symbol) or\n" +
+ check_fail("<0.15>.kind_of?(Symbol) or\n" +
"<0.15>.respond_to?(:to_str) expected") do
assert_respond_to("thing", 0.15)
end
end
def tset_assert_not_respond_to_fail_existence
- check_fails("message.\n" +
+ check_fail("message.\n" +
"!<:symbol>.respond_to?(:to_s) expected\n" +
"(Class: )") do
assert_respond_to(:symbol, :to_s, "message")
@@ -975,7 +975,7 @@ message.
with a true value but was
.
EOM
- check_fails(expected_message.chomp) do
+ check_fail(expected_message.chomp) do
assert_send([object, :return_argument, false, "bogus"], "message")
end
end
@@ -1002,15 +1002,15 @@ EOM
assert_boolean(false)
end
- check_fails(" or expected but was\n<1>") do
+ check_fail(" or expected but was\n<1>") do
assert_boolean(1)
end
- check_fails(" or expected but was\n") do
+ check_fail(" or expected but was\n") do
assert_boolean(nil)
end
- check_fails("message.\n or expected but was\n<\"XXX\">") do
+ check_fail("message.\n or expected but was\n<\"XXX\">") do
assert_boolean("XXX", "message")
end
end
@@ -1020,15 +1020,15 @@ EOM
assert_true(true)
end
- check_fails(" expected but was\n") do
+ check_fail(" expected but was\n") do
assert_true(false)
end
- check_fails(" expected but was\n<1>") do
+ check_fail(" expected but was\n<1>") do
assert_true(1)
end
- check_fails("message.\n expected but was\n") do
+ check_fail("message.\n expected but was\n") do
assert_true(nil, "message")
end
end
@@ -1038,15 +1038,15 @@ EOM
assert_false(false)
end
- check_fails(" expected but was\n") do
+ check_fail(" expected but was\n") do
assert_false(true)
end
- check_fails(" expected but was\n") do
+ check_fail(" expected but was\n") do
assert_false(nil)
end
- check_fails("message.\n expected but was\n<:false>") do
+ check_fail("message.\n expected but was\n<:false>") do
assert_false(:false, "message")
end
end
@@ -1073,7 +1073,7 @@ EOM
<15> expected less than
<10>.
EOM
- check_fails(expected_message.chomp) do
+ check_fail(expected_message.chomp) do
assert_compare(15, "<", 10)
end
@@ -1082,7 +1082,7 @@ EOM
<15> expected less than or equal to
<10>.
EOM
- check_fails(expected_message.chomp) do
+ check_fail(expected_message.chomp) do
assert_compare(15, "<=", 10)
end
@@ -1091,7 +1091,7 @@ EOM
<10> expected greater than
<15>.
EOM
- check_fails(expected_message.chomp) do
+ check_fail(expected_message.chomp) do
assert_compare(10, ">", 15)
end
@@ -1100,7 +1100,7 @@ EOM
<10> expected greater than or equal to
<15>.
EOM
- check_fails(expected_message.chomp) do
+ check_fail(expected_message.chomp) do
assert_compare(10, ">=", 15)
end
end
@@ -1112,7 +1112,7 @@ EOM
end
end
- check_fails("Failed assertion was expected.") do
+ check_fail("Failed assertion was expected.") do
assert_fail_assertion do
end
end
@@ -1141,7 +1141,7 @@ EOM
<"Expected message"> exception message expected but was
<"Actual message">.
EOM
- check_fails(expected_message.chomp) do
+ check_fail(expected_message.chomp) do
assert_raise_message("Expected message") do
raise "Actual message"
end
@@ -1150,7 +1150,7 @@ EOM
expected_message = <<-EOM
<"Expected message"> exception message expected but none was thrown.
EOM
- check_fails(expected_message.chomp) do
+ check_fail(expected_message.chomp) do
assert_raise_message("Expected message") do
end
end
@@ -1168,7 +1168,7 @@ EOM
Class:
Message:
EOM
- check_fails_exception(expected_message) do
+ check_fail_exception(expected_message) do
assert_raise_kind_of(SystemCallError) do
raise RuntimeError, "XXX"
end
@@ -1184,7 +1184,7 @@ EOM
assert_const_defined(Test, "Unit")
end
- check_fails(".const_defined?(<:Nonexistence>) expected.") do
+ check_fail(".const_defined?(<:Nonexistence>) expected.") do
assert_const_defined(Test, :Nonexistence)
end
end
@@ -1194,11 +1194,11 @@ EOM
assert_not_const_defined(Test, :Nonexistence)
end
- check_fails("!.const_defined?(<:Unit>) expected.") do
+ check_fail("!.const_defined?(<:Unit>) expected.") do
assert_not_const_defined(Test, :Unit)
end
- check_fails("!.const_defined?(<\"Unit\">) expected.") do
+ check_fail("!.const_defined?(<\"Unit\">) expected.") do
assert_not_const_defined(Test, "Unit")
end
end
@@ -1208,11 +1208,11 @@ EOM
assert_predicate([], :empty?)
end
- check_fails("<[1]>.empty? is true value expected but was\n") do
+ check_fail("<[1]>.empty? is true value expected but was\n") do
assert_predicate([1], :empty?)
end
- check_fails("<[1]>.respond_to?(:nonexistent?) expected\n" +
+ check_fail("<[1]>.respond_to?(:nonexistent?) expected\n" +
"(Class: )") do
assert_predicate([1], :nonexistent?)
end
@@ -1223,11 +1223,11 @@ EOM
assert_not_predicate([1], :empty?)
end
- check_fails("<[]>.empty? is false value expected but was\n") do
+ check_fail("<[]>.empty? is false value expected but was\n") do
assert_not_predicate([], :empty?)
end
- check_fails("<[]>.respond_to?(:nonexistent?) expected\n" +
+ check_fail("<[]>.respond_to?(:nonexistent?) expected\n" +
"(Class: )") do
assert_not_predicate([], :nonexistent?)
end
@@ -1252,18 +1252,18 @@ EOM
assert_alias_method(object, :original_method, :alias_method)
end
- check_fails("<#{object.method(:other).inspect}> is alias of\n" +
+ check_fail("<#{object.method(:other).inspect}> is alias of\n" +
"<#{object.method(:original_method).inspect}> expected") do
assert_alias_method(object, :other, :original_method)
end
inspected_object = AssertionMessage.convert(object)
- check_fails("<#{inspected_object}>.nonexistent doesn't exist\n" +
+ check_fail("<#{inspected_object}>.nonexistent doesn't exist\n" +
"(Class: )") do
assert_alias_method(object, :nonexistent, :original_method)
end
- check_fails("<#{inspected_object}>.nonexistent doesn't exist\n" +
+ check_fail("<#{inspected_object}>.nonexistent doesn't exist\n" +
"(Class: )") do
assert_alias_method(object, :alias_method, :nonexistent)
end
@@ -1275,7 +1275,7 @@ EOM
end
nonexistent_file = __FILE__ + ".nonexistent"
- check_fails("<#{nonexistent_file.inspect}> expected to exist") do
+ check_fail("<#{nonexistent_file.inspect}> expected to exist") do
assert_path_exist(nonexistent_file)
end
end
@@ -1286,7 +1286,7 @@ EOM
assert_path_not_exist(nonexistent_file)
end
- check_fails("<#{__FILE__.inspect}> expected to not exist") do
+ check_fail("<#{__FILE__.inspect}> expected to not exist") do
assert_path_not_exist(__FILE__)
end
end
@@ -1314,26 +1314,26 @@ EOM
end
def test_fail_nil
- check_fails(" is not true.") do
+ check_fail(" is not true.") do
assert(nil)
end
end
def test_fail_false
- check_fails(" is not true.") do
+ check_fail(" is not true.") do
assert(false)
end
end
def test_fail_false_with_message
- check_fails("failed assert.\n" +
+ check_fail("failed assert.\n" +
" is not true.") do
assert(false, "failed assert")
end
end
def test_fail_with_assertion_message
- check_fails("user message.\n" +
+ check_fail("user message.\n" +
"placeholder <:in> message") do
assert(false, build_message("user message",
"placeholder > message",
@@ -1342,7 +1342,7 @@ EOM
end
def test_error_invalid_message_true
- check_fails("assertion message must be String, Proc or " +
+ check_fail("assertion message must be String, Proc or " +
"Test::Unit::Assertions::AssertionMessage: " +
"()") do
begin
@@ -1392,7 +1392,7 @@ EOM
end
def test_fail_with_message
- check_fails("message.\n" +
+ check_fail("message.\n" +
"<0.5> -/+ <0.05> expected to include\n" +
"<0.4>.\n" +
"\n" +
@@ -1405,7 +1405,7 @@ EOM
def test_fail_because_not_float_like_object
object = Object.new
inspected_object = AssertionMessage.convert(object)
- check_fails("The arguments must respond to to_f; " +
+ check_fail("The arguments must respond to to_f; " +
"the first float did not.\n" +
"<#{inspected_object}>.respond_to?(:to_f) expected\n" +
"(Class: )") do
@@ -1414,14 +1414,14 @@ EOM
end
def test_fail_because_negaitve_delta
- check_fails("The delta should not be negative.\n" +
+ check_fail("The delta should not be negative.\n" +
"<-0.1> expected to be\n>=\n<0.0>.") do
assert_in_delta(0.5, 0.4, -0.1, "message")
end
end
def test_fail_without_delta
- check_fails("<1.402> -/+ <0.001> expected to include\n" +
+ check_fail("<1.402> -/+ <0.001> expected to include\n" +
"<1.404>.\n" +
"\n" +
"Relation:\n" +
@@ -1473,7 +1473,7 @@ EOM
end
def test_fail
- check_fails("<1.4> -/+ <0.11> expected to not include\n" +
+ check_fail("<1.4> -/+ <0.11> expected to not include\n" +
"<1.5>.\n" +
"\n" +
"Relation:\n" +
@@ -1487,7 +1487,7 @@ EOM
end
def test_fail_without_delta
- check_fails("<1.402> -/+ <0.001> expected to not include\n" +
+ check_fail("<1.402> -/+ <0.001> expected to not include\n" +
"<1.4021>.\n" +
"\n" +
"Relation:\n" +
@@ -1501,7 +1501,7 @@ EOM
end
def test_fail_with_message
- check_fails("message.\n" +
+ check_fail("message.\n" +
"<0.5> -/+ <0.11> expected to not include\n" +
"<0.4>.\n" +
"\n" +
@@ -1518,7 +1518,7 @@ EOM
def test_fail_because_not_float_like_object
object = Object.new
inspected_object = AssertionMessage.convert(object)
- check_fails("The arguments must respond to to_f; " +
+ check_fail("The arguments must respond to to_f; " +
"the first float did not.\n" +
"<#{inspected_object}>.respond_to?(:to_f) expected\n" +
"(Class: )") do
@@ -1527,7 +1527,7 @@ EOM
end
def test_fail_because_negaitve_delta
- check_fails("The delta should not be negative.\n" +
+ check_fail("The delta should not be negative.\n" +
"<-0.11> expected to be\n>=\n<0.0>.") do
assert_not_in_delta(0.5, 0.4, -0.11, "message")
end
@@ -1578,7 +1578,7 @@ EOM
end
def test_fail_with_message
- check_fails("message.\n" +
+ check_fail("message.\n" +
"<10000> -/+ (<10000> * <0.1>)[1000.0] " +
"expected to include\n" +
"<8999>.\n" +
@@ -1596,7 +1596,7 @@ EOM
def test_fail_because_not_float_like_object
object = Object.new
inspected_object = AssertionMessage.convert(object)
- check_fails("The arguments must respond to to_f; " +
+ check_fail("The arguments must respond to to_f; " +
"the first float did not.\n" +
"<#{inspected_object}>.respond_to?(:to_f) expected\n" +
"(Class: )") do
@@ -1605,14 +1605,14 @@ EOM
end
def test_fail_because_negaitve_epsilon
- check_fails("The epsilon should not be negative.\n" +
+ check_fail("The epsilon should not be negative.\n" +
"<-0.1> expected to be\n>=\n<0.0>.") do
assert_in_epsilon(10000, 9000, -0.1, "message")
end
end
def test_fail_without_epsilon
- check_fails("<10000> -/+ (<10000> * <0.001>)[10.0] " +
+ check_fail("<10000> -/+ (<10000> * <0.001>)[10.0] " +
"expected to include\n" +
"<10011>.\n" +
"\n" +
@@ -1665,7 +1665,7 @@ EOM
end
def test_fail
- check_fails("<10000> -/+ (<10000> * <0.1>)[1000.0] " +
+ check_fail("<10000> -/+ (<10000> * <0.1>)[1000.0] " +
"expected to not include\n" +
"<9000>.\n" +
"\n" +
@@ -1680,7 +1680,7 @@ EOM
end
def test_fail_without_epsilon
- check_fails("<10000> -/+ (<10000> * <0.001>)[10.0] " +
+ check_fail("<10000> -/+ (<10000> * <0.001>)[10.0] " +
"expected to not include\n" +
"<9990>.\n" +
"\n" +
@@ -1695,7 +1695,7 @@ EOM
end
def test_fail_with_message
- check_fails("message.\n" +
+ check_fail("message.\n" +
"<10000> -/+ (<10000> * <0.1>)[1000.0] " +
"expected to not include\n" +
"<9000>.\n" +
@@ -1713,7 +1713,7 @@ EOM
def test_fail_because_not_float_like_object
object = Object.new
inspected_object = AssertionMessage.convert(object)
- check_fails("The arguments must respond to to_f; " +
+ check_fail("The arguments must respond to to_f; " +
"the first float did not.\n" +
"<#{inspected_object}>.respond_to?(:to_f) expected\n" +
"(Class: )") do
@@ -1722,7 +1722,7 @@ EOM
end
def test_fail_because_negaitve_epsilon
- check_fails("The epsilon should not be negative.\n" +
+ check_fail("The epsilon should not be negative.\n" +
"<-0.1> expected to be\n>=\n<0.0>.") do
assert_not_in_epsilon(10000, 9000, -0.1, "message")
end
@@ -1745,14 +1745,14 @@ EOM
end
def test_fail
- check_fails("<[1, 2, 3]> expected to include\n" +
+ check_fail("<[1, 2, 3]> expected to include\n" +
"<4>.") do
assert_include([1, 2, 3], 4)
end
end
def test_fail_with_message
- check_fails("message.\n" +
+ check_fail("message.\n" +
"<[1, 2, 3]> expected to include\n" +
"<4>.") do
assert_include([1, 2, 3], 4, "message")
@@ -1762,7 +1762,7 @@ EOM
def test_fail_because_not_collection_like_object
object = Object.new
inspected_object = AssertionMessage.convert(object)
- check_fails("The collection must respond to :include?.\n" +
+ check_fail("The collection must respond to :include?.\n" +
"<#{inspected_object}>.respond_to?(:include?) expected\n" +
"(Class: )") do
assert_include(object, 1)
@@ -1786,14 +1786,14 @@ EOM
end
def test_fail
- check_fails("<[1, 2, 3]> expected to not include\n" +
+ check_fail("<[1, 2, 3]> expected to not include\n" +
"<2>.") do
assert_not_include([1, 2, 3], 2)
end
end
def test_fail_with_message
- check_fails("message.\n" +
+ check_fail("message.\n" +
"<[1, 2, 3]> expected to not include\n" +
"<2>.") do
assert_not_include([1, 2, 3], 2, "message")
@@ -1803,7 +1803,7 @@ EOM
def test_fail_because_not_collection_like_object
object = Object.new
inspected_object = AssertionMessage.convert(object)
- check_fails("The collection must respond to :include?.\n" +
+ check_fail("The collection must respond to :include?.\n" +
"<#{inspected_object}>.respond_to?(:include?) expected\n" +
"(Class: )") do
assert_not_include(object, 1)
@@ -1827,13 +1827,13 @@ EOM
end
def test_fail
- check_fails("<[1]> expected to be empty.") do
+ check_fail("<[1]> expected to be empty.") do
assert_empty([1])
end
end
def test_fail_with_message
- check_fails("message.\n" +
+ check_fail("message.\n" +
"<[1]> expected to be empty.") do
assert_empty([1], "message")
end
@@ -1842,7 +1842,7 @@ EOM
def test_fail_because_no_empty_method
object = Object.new
inspected_object = AssertionMessage.convert(object)
- check_fails("The object must respond to :empty?.\n" +
+ check_fail("The object must respond to :empty?.\n" +
"<#{inspected_object}>.respond_to?(:empty?) expected\n" +
"(Class: )") do
assert_empty(object)
@@ -1866,13 +1866,13 @@ EOM
end
def test_fail
- check_fails("<[]> expected to not be empty.") do
+ check_fail("<[]> expected to not be empty.") do
assert_not_empty([])
end
end
def test_fail_with_message
- check_fails("message.\n" +
+ check_fail("message.\n" +
"<[]> expected to not be empty.") do
assert_not_empty([], "message")
end
@@ -1881,7 +1881,7 @@ EOM
def test_fail_because_no_empty_method
object = Object.new
inspected_object = AssertionMessage.convert(object)
- check_fails("The object must respond to :empty?.\n" +
+ check_fail("The object must respond to :empty?.\n" +
"<#{inspected_object}>.respond_to?(:empty?) expected\n" +
"(Class: )") do
assert_not_empty(object)
@@ -1905,7 +1905,7 @@ message.
with not a true value but was
.
EOM
- check_fails(expected_message.chomp) do
+ check_fail(expected_message.chomp) do
assert_not_send([[1, 2], :member?, 2], "message")
end
end
From null+test-unit ¡÷ clear-code.com Thu Jan 5 09:02:30 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Thu, 05 Jan 2012 23:02:30 +0900
Subject: [test-unit-commit:00177] test-unit/test-unit [master] more shorten
exception message.
Message-ID: <20120105140247.D9CDB9A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-05 23:02:30 +0900 (Thu, 05 Jan 2012)
New Revision: 7e28a92b062f04156764b78099cb3e517ca895b8
Log:
more shorten exception message.
Modified files:
lib/test/unit/assertions.rb
test/test-assertions.rb
Modified: lib/test/unit/assertions.rb (+1 -2)
===================================================================
--- lib/test/unit/assertions.rb 2012-01-05 22:47:04 +0900 (46324ad)
+++ lib/test/unit/assertions.rb 2012-01-05 23:02:30 +0900 (0ad8b04)
@@ -1518,8 +1518,7 @@ EOT
case object
when Exception
<
-Message: <#{object.message}>
+<#{convert(object.class)}>(<#{object.message}>)
#{Util::BacktraceFilter.filter_backtrace(object.backtrace).join("\n")}
EOM
else
Modified: test/test-assertions.rb (+10 -19)
===================================================================
--- test/test-assertions.rb 2012-01-05 22:47:04 +0900 (38ae226)
+++ test/test-assertions.rb 2012-01-05 23:02:30 +0900 (351ff15)
@@ -91,7 +91,7 @@ module Test
def check_fail_exception(expected_message, options={}, &proc)
normalizer = lambda do |actual_message|
- actual_message.gsub(/(^[^:]+:\d+:.*\n?)+\z/, "")
+ actual_message.gsub(/(^[^:\n]+:\d+:.+\n?)+\z/, "")
end
check_assertions(true,
options.merge(:expected_message => expected_message,
@@ -441,8 +441,7 @@ EOM
message = <<-EOM
failed assert_raise.
exception expected but was
-Class:
-Message:
+()
EOM
check_fail_exception(message) do
assert_raise(ArgumentError, "failed assert_raise") do
@@ -504,8 +503,7 @@ EOM
message = <<-EOM
failed assert_raise.
<[ArgumentError, TypeError]> exception expected but was
-Class:
-Message:
+()
EOM
check_fail_exception(message) do
assert_raise(ArgumentError, TypeError, "failed assert_raise") do
@@ -530,8 +528,7 @@ EOM
message = <<-EOM
exception expected but was
-Class:
-Message:
+()
EOM
check_fail_exception(message) do
return_value = assert_raise(RuntimeError.new("XXX")) do
@@ -542,8 +539,7 @@ EOM
different_error_class = Class.new(StandardError)
message = <<-EOM
<#{different_error_class.inspect}("Error")> exception expected but was
-Class:
-Message:
+()
EOM
check_fail_exception(message) do
assert_raise(different_error_class.new("Error")) do
@@ -557,8 +553,7 @@ EOM
end
message = <<-EOM
exception expected but was
-Class:
-Message:
+()
EOM
check_fail_exception(message) do
assert_raise(different_error) do
@@ -731,8 +726,7 @@ EOM
}
expected_message = <<-EOM
Exception raised:
-Class:
-Message:
+()
EOM
check_fail_exception(expected_message) {
assert_nothing_raised {
@@ -742,8 +736,7 @@ EOM
expected_message = <<-EOM
failed assert_nothing_raised.
Exception raised:
-Class:
-Message:
+()
EOM
check_fail_exception(expected_message) {
assert_nothing_raised("failed assert_nothing_raised") {
@@ -752,8 +745,7 @@ EOM
}
expected_message = <<-EOM
Exception raised:
-Class:
-Message:
+()
EOM
check_fail_exception(expected_message) {
assert_nothing_raised(StandardError, RuntimeError) {
@@ -1165,8 +1157,7 @@ EOM
expected_message = <<-EOM
family exception expected but was
-Class:
-Message:
+()
EOM
check_fail_exception(expected_message) do
assert_raise_kind_of(SystemCallError) do
From null+test-unit ¡÷ clear-code.com Sat Jan 7 09:42:08 2012
From: null+test-unit ¡÷ clear-code.com (null+test-unit ¡÷ clear-code.com)
Date: Sat, 07 Jan 2012 23:42:08 +0900
Subject: [test-unit-commit:00178] test-unit/test-unit [master] improve
failure message for assert_raise.
Message-ID: <20120107144227.9970C9A09D@jenkins.clear-code.com>
Kouhei Sutou 2012-01-07 23:42:08 +0900 (Sat, 07 Jan 2012)
New Revision: 5cfee156086000263e77aba760c6f9e050e550d0
Log:
improve failure message for assert_raise.
Modified files:
lib/test/unit/assertions.rb
test/test-assertions.rb
Modified: lib/test/unit/assertions.rb (+37 -28)
===================================================================
--- lib/test/unit/assertions.rb 2012-01-05 23:02:30 +0900 (0ad8b04)
+++ lib/test/unit/assertions.rb 2012-01-07 23:42:08 +0900 (9615ff9)
@@ -118,11 +118,7 @@ EOT
begin
assert_block(full_message) { expected == actual }
rescue AssertionFailedError => failure
- failure.expected = expected
- failure.actual = actual
- failure.inspected_expected = AssertionMessage.convert(expected)
- failure.inspected_actual = AssertionMessage.convert(actual)
- failure.user_message = message
+ _set_failed_information(failure, expected, actual, message)
raise failure # For JRuby. :<
end
end
@@ -149,11 +145,19 @@ EOT
assert_expected_exception = Proc.new do |*_args|
message, assert_exception_helper, actual_exception = _args
expected = assert_exception_helper.expected_exceptions
+ diff = AssertionMessage.delayed_diff(expected, actual_exception)
full_message = build_message(message,
- "> exception expected but was\n?",
- expected, actual_exception)
- assert_block(full_message) do
- expected == [] or assert_exception_helper.expected?(actual_exception)
+ "> exception expected but was\n>.?",
+ expected, actual_exception, diff)
+ begin
+ assert_block(full_message) do
+ expected == [] or
+ assert_exception_helper.expected?(actual_exception)
+ end
+ rescue AssertionFailedError => failure
+ _set_failed_information(failure, expected, actual_exception,
+ message)
+ raise failure # For JRuby. :<
end
end
_assert_raise(assert_expected_exception, *args, &block)
@@ -183,7 +187,7 @@ EOT
expected = assert_exception_helper.expected_exceptions
full_message = build_message(message,
"> family exception expected " +
- "but was\n?",
+ "but was\n>.",
expected, actual_exception)
assert_block(full_message) do
assert_exception_helper.expected?(actual_exception, :kind_of?)
@@ -1423,6 +1427,15 @@ EOT
end
end
+ private
+ def _set_failed_information(failure, expected, actual, user_message)
+ failure.expected = expected
+ failure.actual = actual
+ failure.inspected_expected = AssertionMessage.convert(expected)
+ failure.inspected_actual = AssertionMessage.convert(actual)
+ failure.user_message = user_message
+ end
+
class AssertionMessage
@use_pp = true
class << self
@@ -1515,27 +1528,22 @@ EOT
end
def convert(object)
- case object
- when Exception
- <(<#{object.message}>)
-#{Util::BacktraceFilter.filter_backtrace(object.backtrace).join("\n")}
-EOM
- else
- inspector = Inspector.new(object)
- if use_pp
+ if object.is_a?(Exception)
+ object = AssertExceptionHelper::WrappedException.new(object)
+ end
+ inspector = Inspector.new(object)
+ if use_pp
+ begin
+ require 'pp' unless defined?(PP)
begin
- require 'pp' unless defined?(PP)
- begin
- return PP.pp(inspector, '').chomp
- rescue NameError
- end
- rescue LoadError
- self.use_pp = false
+ return PP.pp(inspector, '').chomp
+ rescue NameError
end
+ rescue LoadError
+ self.use_pp = false
end
- inspector.inspect
end
+ inspector.inspect
end
end
@@ -1771,13 +1779,14 @@ EOM
class AssertExceptionHelper
class WrappedException
+ attr_reader :exception
def initialize(exception)
@exception = exception
end
def inspect
if default_inspect?
- "#{@exception.class.inspect}(#{@exception.message.inspect})"
+ "#{@exception.class.inspect}(<#{@exception.message}>)"
else
@exception.inspect
end
Modified: test/test-assertions.rb (+28 -22)
===================================================================
--- test/test-assertions.rb 2012-01-05 23:02:30 +0900 (351ff15)
+++ test/test-assertions.rb 2012-01-07 23:42:08 +0900 (695b813)
@@ -438,10 +438,10 @@ EOM
end
end
- message = <<-EOM
+ message = <<-EOM.chomp
failed assert_raise.
exception expected but was
-()
+)>.
EOM
check_fail_exception(message) do
assert_raise(ArgumentError, "failed assert_raise") do
@@ -500,10 +500,10 @@ EOM
end
end
- message = <<-EOM
+ message = <<-EOM.chomp
failed assert_raise.
<[ArgumentError, TypeError]> exception expected but was
-()
+)>.
EOM
check_fail_exception(message) do
assert_raise(ArgumentError, TypeError, "failed assert_raise") do
@@ -526,9 +526,15 @@ EOM
"Should have returned the correct exception " +
"from a successful assert_raise")
- message = <<-EOM
- exception expected but was
-()
+ message = <<-EOM.chomp
+)> exception expected but was
+)>.
+
+diff:
+- RuntimeError()
+? ^^^
++ RuntimeError()
+? ^^^^^
EOM
check_fail_exception(message) do
return_value = assert_raise(RuntimeError.new("XXX")) do
@@ -537,9 +543,9 @@ EOM
end
different_error_class = Class.new(StandardError)
- message = <<-EOM
-<#{different_error_class.inspect}("Error")> exception expected but was
-()
+ message = <<-EOM.chomp
+<#{different_error_class.inspect}()> exception expected but was
+)>.
EOM
check_fail_exception(message) do
assert_raise(different_error_class.new("Error")) do
@@ -551,9 +557,9 @@ EOM
def different_error.inspect
"DifferentError: \"Error\""
end
- message = <<-EOM
+ message = <<-EOM.chomp