1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Merge the upstream changes for test-unit on ruby/logger.

This commits are based with:
    f067f7d1aa
    86058f420d
    02db6e8ed8
This commit is contained in:
Hiroshi SHIBATA 2019-12-09 19:11:18 +09:00
parent ff7cc0dc34
commit 4b36832ba6
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2
2 changed files with 5 additions and 1 deletions

View file

@ -24,5 +24,6 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "bundler", ">= 0"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency "test-unit"
spec.add_development_dependency "rdoc"
end

View file

@ -3,3 +3,6 @@ $LOAD_PATH.unshift File.join(ROOT_DIR, 'lib') # to use logger in this repo inste
$LOAD_PATH.unshift File.join(ROOT_DIR, 'test', 'lib') # to use custom test-unit in this repo
require 'logger'
require 'test/unit'
require 'core_assertions'
Test::Unit::TestCase.include Test::Unit::CoreAssertions