Description: Fix relative path for test_helper in require statements
 As test/ is not in $LOAD_PATH, use "test/test_helper" in require statements
 instead of just "test_helper".
Author: Cédric Boutillier <cedric.boutillier@gmail.com>
Forwarded: no
Index: ruby-introspection/test/instance_snapshot_test.rb
===================================================================
--- ruby-introspection.orig/test/instance_snapshot_test.rb	2011-12-30 16:14:51.000000000 +0100
+++ ruby-introspection/test/instance_snapshot_test.rb	2011-12-30 16:14:51.000000000 +0100
@@ -1,4 +1,4 @@
-require "test_helper"
+require "test/test_helper"
 
 class InstanceSnapshotTest < Test::Unit::TestCase
 
@@ -119,4 +119,4 @@
     end
   end
 
-end
\ No newline at end of file
+end
Index: ruby-introspection/test/class_snapshot_test.rb
===================================================================
--- ruby-introspection.orig/test/class_snapshot_test.rb	2011-12-30 16:14:51.000000000 +0100
+++ ruby-introspection/test/class_snapshot_test.rb	2011-12-30 16:14:51.000000000 +0100
@@ -1,4 +1,4 @@
-require "test_helper"
+require "test/test_helper"
 
 class ClassSnapshotTest < Test::Unit::TestCase
 
@@ -84,4 +84,4 @@
     end
   end
 
-end
\ No newline at end of file
+end
Index: ruby-introspection/test/module_snapshot_test.rb
===================================================================
--- ruby-introspection.orig/test/module_snapshot_test.rb	2011-12-30 16:14:51.000000000 +0100
+++ ruby-introspection/test/module_snapshot_test.rb	2011-12-30 16:14:51.000000000 +0100
@@ -1,4 +1,4 @@
-require "test_helper"
+require "test/test_helper"
 
 class ModuleSnapshotTest < Test::Unit::TestCase
 
@@ -37,4 +37,4 @@
       assert_method_exists(mod, superdupermod, :foo, visibility)
     end
   end
-end
\ No newline at end of file
+end
Index: ruby-introspection/test/snapshot_test.rb
===================================================================
--- ruby-introspection.orig/test/snapshot_test.rb	2011-12-30 16:14:51.000000000 +0100
+++ ruby-introspection/test/snapshot_test.rb	2011-12-30 16:14:51.000000000 +0100
@@ -1,4 +1,4 @@
-require "test_helper"
+require "test/test_helper"
 require "blankslate"
 
 class SnapshotTest < Test::Unit::TestCase
@@ -52,4 +52,4 @@
     assert_nothing_raised { Snapshot.new(BlankSlate.new) }
   end
 
-end
\ No newline at end of file
+end
