From 5a148bc6db8186b4b21b5d98f2be4372165bd6f6 Mon Sep 17 00:00:00 2001 From: Eric Allen Date: Mon, 31 Aug 2009 19:42:16 -0400 Subject: [PATCH] Gems should be specified in environment, not test_helper, in newer Rails --- test/test_helper.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/test/test_helper.rb b/test/test_helper.rb index 996b31cd..318fe69f 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,7 +1,6 @@ ENV["RAILS_ENV"] = "test" require File.expand_path(File.dirname(__FILE__) + "/../config/environment") require File.expand_path(File.dirname(__FILE__) + "/../app/controllers/application") -require 'autotest/rails' #you need the zentest gem installed require 'test_help' require 'flexmock/test_unit' #and the flexmock gem, too! require 'action_web_service/test_invoke'