aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test
diff options
context:
space:
mode:
authorŁukasz Strzałkowski <lukasz.strzalkowski@gmail.com>2013-07-16 15:58:50 +0200
committerŁukasz Strzałkowski <lukasz.strzalkowski@gmail.com>2013-08-25 11:39:10 +0200
commit81e5be0692205bfee2bb87fc5f3377602c72fb70 (patch)
tree76a05d15f0e793eb31ad09005ce7adba4a763a02 /actionview/test
parente33fc9288e4204f6726225951134427326bf1c10 (diff)
downloadrails-81e5be0692205bfee2bb87fc5f3377602c72fb70.tar.gz
rails-81e5be0692205bfee2bb87fc5f3377602c72fb70.tar.bz2
rails-81e5be0692205bfee2bb87fc5f3377602c72fb70.zip
Remove unused in AV fixture-controllers
Diffstat (limited to 'actionview/test')
-rw-r--r--actionview/test/abstract_unit.rb29
1 files changed, 0 insertions, 29 deletions
diff --git a/actionview/test/abstract_unit.rb b/actionview/test/abstract_unit.rb
index dc1b29482b..40642bf705 100644
--- a/actionview/test/abstract_unit.rb
+++ b/actionview/test/abstract_unit.rb
@@ -353,32 +353,3 @@ module RoutingTestHelpers
end
end
-class ResourcesController < ActionController::Base
- def index() render :nothing => true end
- alias_method :show, :index
-end
-
-class ThreadsController < ResourcesController; end
-class MessagesController < ResourcesController; end
-class CommentsController < ResourcesController; end
-class ReviewsController < ResourcesController; end
-class AuthorsController < ResourcesController; end
-class LogosController < ResourcesController; end
-
-class AccountsController < ResourcesController; end
-class AdminController < ResourcesController; end
-class ProductsController < ResourcesController; end
-class ImagesController < ResourcesController; end
-class PreferencesController < ResourcesController; end
-
-module Backoffice
- class ProductsController < ResourcesController; end
- class TagsController < ResourcesController; end
- class ManufacturersController < ResourcesController; end
- class ImagesController < ResourcesController; end
-
- module Admin
- class ProductsController < ResourcesController; end
- class ImagesController < ResourcesController; end
- end
-end