mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
5 lines
270 B
Ruby
5 lines
270 B
Ruby
ROOT_DIR = File.dirname(__dir__)
|
|
$LOAD_PATH.unshift File.join(ROOT_DIR, 'lib') # to use logger in this repo instead of ruby built-in logger
|
|
$LOAD_PATH.unshift File.join(ROOT_DIR, 'test', 'lib') # to use custom test-unit in this repo
|
|
require 'logger'
|
|
require 'test/unit'
|