Description: Let debian/ruby-tests.rb handle the test suite loading
 Was causing FTBFS because ext was loaded.
Origin: vendor
Author: Lucas Nussbaum <lucas@debian.org>
Bug: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=634438
Last-Update: 2017-07-07

--- a/tests/test_helper.rb
+++ b/tests/test_helper.rb
@@ -1,12 +1,9 @@
 case ENV['JSON']
 when 'pure'
-  $:.unshift 'lib'
   require 'json/pure'
 when 'ext'
-  $:.unshift 'ext', 'lib'
   require 'json/ext'
 else
-  $:.unshift 'ext', 'lib'
   require 'json'
 end
 
