From eb638b75b33c7be30021d1de57f44498c6b5f6d6 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Tue, 23 Jul 2019 16:09:46 +0900 Subject: It can be share to use CoreAssertions for default gems. ref. https://github.com/ruby/logger/pull/35 --- tool/lib/test/unit/core_assertions.rb | 33 +++++++++++++++++++++++++++++---- 1 file changed, 29 insertions(+), 4 deletions(-) (limited to 'tool') diff --git a/tool/lib/test/unit/core_assertions.rb b/tool/lib/test/unit/core_assertions.rb index 21be860176..5533c54634 100644 --- a/tool/lib/test/unit/core_assertions.rb +++ b/tool/lib/test/unit/core_assertions.rb @@ -1,11 +1,36 @@ # frozen_string_literal: true -require_relative '../../envutil' - module Test module Unit module CoreAssertions - include MiniTest::Assertions + if defined?(MiniTest) + require_relative '../../envutil' + # for ruby core testing + include MiniTest::Assertions + else + require 'pp' + require_relative 'envutil' + include Test::Unit::Assertions + + def _assertions= n # :nodoc: + @_assertions = n + end + + def _assertions # :nodoc: + @_assertions ||= 0 + end + + ## + # Returns a proc that will output +msg+ along with the default message. + + def message msg = nil, ending = nil, &default + proc { + msg = msg.call.chomp(".") if Proc === msg + custom_message = "#{msg}.\n" unless msg.nil? or msg.to_s.empty? + "#{custom_message}#{default.call}#{ending || "."}" + } + end + end def mu_pp(obj) #:nodoc: obj.pretty_inspect.chomp @@ -99,7 +124,7 @@ module Test end src = <