From b3fb9addde24e13420317c0f97eaa20bf7ad916f Mon Sep 17 00:00:00 2001 From: alexreisner <alex@alexreisner.com> Date: Thu, 11 Feb 2010 23:04:30 -0500 Subject: [PATCH] Require 'active_support/core_ext' instead of 'activesupport'. This makes the tests Rails 3 compatible. Adding /core_ext is necessary or we don't have access to the class_inheritable_reader method. --- test/test_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_helper.rb b/test/test_helper.rb index 5633ae86..5e9e462d 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,6 +1,6 @@ require 'rubygems' require 'test/unit' -require 'activesupport' +require 'active_support/core_ext' $LOAD_PATH.unshift(File.dirname(__FILE__)) $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) -- GitLab