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

18 lines
247 B
Ruby
Raw Normal View History

case ENV['JSON']
when 'pure'
2020-07-01 05:50:39 -04:00
$:.unshift 'lib'
require 'json/pure'
when 'ext'
2020-07-01 05:50:39 -04:00
$:.unshift 'ext', 'lib'
require 'json/ext'
else
2020-07-01 05:50:39 -04:00
$:.unshift 'ext', 'lib'
require 'json'
end
require 'test/unit'
begin
require 'byebug'
rescue LoadError
end