From 4c061508ce57a2693d5a5e888f1ca8354835247a Mon Sep 17 00:00:00 2001 From: lukemelia Date: Sun, 18 Mar 2007 05:28:53 +0000 Subject: [PATCH] Removed test's reference to deleted FeedController class. One thing I forgot to mention in the last commit is that the changes break feed links. If people think it's important to maintain them, we can use routes to accomplish that... git-svn-id: http://www.rousette.org.uk/svn/tracks-repos/trunk@477 a4c988fc-2ded-0310-b66e-134b36920a42 --- tracks/test/integration/feed_smoke_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracks/test/integration/feed_smoke_test.rb b/tracks/test/integration/feed_smoke_test.rb index eef0ca41..f7df0ff8 100644 --- a/tracks/test/integration/feed_smoke_test.rb +++ b/tracks/test/integration/feed_smoke_test.rb @@ -6,7 +6,7 @@ require 'todos_controller' # Re-raise errors caught by the controller. class ProjectsController; def rescue_action(e) raise e end; end class ContextsController; def rescue_action(e) raise e end; end -class FeedController; def rescue_action(e) raise e end; end +class TodosController; def rescue_action(e) raise e end; end class FeedSmokeTest < ActionController::IntegrationTest fixtures :users, :preferences, :projects, :contexts, :todos, :notes