Fix the functional tests that wouldn't run before

With Ruby 1.8.7, the functional tests were failing due to a recursive
require stack. No longer requiring 'backend_controller' and doesn't seem
to have any bearing on the running of the tests.
This commit is contained in:
Matt Rogers 2011-10-18 22:25:17 -05:00
parent af6ac52663
commit a7ce073351

View file

@ -1,5 +1,4 @@
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
require 'backend_controller'
# Re-raise errors caught by the controller.
class BackendController; def rescue_action(e) raise e end; end