diff options
author | Joshua Peek <josh@joshpeek.com> | 2009-09-06 23:02:55 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2009-09-06 23:02:55 -0500 |
commit | 2ae84e04aa18f6b35c628349c8c816fe1538cd70 (patch) | |
tree | e5cb85316fa3d76ebd3d9bcb3ad24d1b365d30ed /actionpack/test/lib/controller/fake_controllers.rb | |
parent | c531bd66651639c25cc8d1b90dd6b56e5db3581b (diff) | |
download | rails-2ae84e04aa18f6b35c628349c8c816fe1538cd70.tar.gz rails-2ae84e04aa18f6b35c628349c8c816fe1538cd70.tar.bz2 rails-2ae84e04aa18f6b35c628349c8c816fe1538cd70.zip |
Add fake controllers for url rewriter tests
Diffstat (limited to 'actionpack/test/lib/controller/fake_controllers.rb')
-rw-r--r-- | actionpack/test/lib/controller/fake_controllers.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/actionpack/test/lib/controller/fake_controllers.rb b/actionpack/test/lib/controller/fake_controllers.rb index b96e91f4f7..22729188a2 100644 --- a/actionpack/test/lib/controller/fake_controllers.rb +++ b/actionpack/test/lib/controller/fake_controllers.rb @@ -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 |