зеркало из https://github.com/github/ruby.git
Simplify conditions for CoreAssertion initialization
This commit is contained in:
Родитель
940a19e4b3
Коммит
544e37f184
|
@ -24,13 +24,11 @@ module Test
|
|||
end
|
||||
|
||||
module CoreAssertions
|
||||
require_relative 'envutil'
|
||||
|
||||
if defined?(MiniTest)
|
||||
require_relative 'envutil'
|
||||
# for ruby core testing
|
||||
include MiniTest::Assertions
|
||||
|
||||
# Compatibility hack for assert_raise
|
||||
Test::Unit::AssertionFailedError = MiniTest::Assertion
|
||||
else
|
||||
module MiniTest
|
||||
class Assertion < Exception; end
|
||||
|
@ -38,7 +36,6 @@ module Test
|
|||
end
|
||||
|
||||
require 'pp'
|
||||
require_relative 'envutil'
|
||||
include Test::Unit::Assertions
|
||||
end
|
||||
|
||||
|
|
|
@ -303,5 +303,9 @@ EOT
|
|||
template.gsub(/\G((?:[^\\]|\\.)*?)(\\)?\?/) { $1 + ($2 ? "?" : mu_pp(arguments.shift)) }
|
||||
end
|
||||
end
|
||||
|
||||
# Compatibility hack for assert_raise
|
||||
AssertionFailedError = MiniTest::Assertion
|
||||
|
||||
end
|
||||
end
|
||||
|
|
Загрузка…
Ссылка в новой задаче