diff options
-rw-r--r-- | test/json/test_helper.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/json/test_helper.rb b/test/json/test_helper.rb index e8bba16f84..7bff9b3391 100644 --- a/test/json/test_helper.rb +++ b/test/json/test_helper.rb @@ -1,12 +1,15 @@ case ENV['JSON'] when 'pure' $LOAD_PATH.unshift(File.expand_path('../../../lib', __FILE__)) + $stderr.puts("Testing JSON::Pure") require 'json/pure' when 'ext' + $stderr.puts("Testing JSON::Ext") $LOAD_PATH.unshift(File.expand_path('../../../ext', __FILE__), File.expand_path('../../../lib', __FILE__)) require 'json/ext' else $LOAD_PATH.unshift(File.expand_path('../../../ext', __FILE__), File.expand_path('../../../lib', __FILE__)) + $stderr.puts("Testing JSON") require 'json' end |