Add fake controllers for url rewriter tests

This commit is contained in:
Joshua Peek 2009-09-06 23:02:55 -05:00
parent c531bd6665
commit 2ae84e04aa
2 changed files with 6 additions and 0 deletions

View File

@ -1,4 +1,5 @@
require 'abstract_unit'
require 'controller/fake_controllers'
ActionController::UrlRewriter

View File

@ -12,6 +12,11 @@ end
class ElsewhereController < ActionController::Base; end
class AddressesController < ActionController::Base; end
class SessionsController < ActionController::Base; end
class FooController < ActionController::Base; end
class CController < ActionController::Base; end
class HiController < ActionController::Base; end
class BraveController < ActionController::Base; end
class ImageController < ActionController::Base; end
# For speed test
class SpeedController < ActionController::Base; end