diff options
author | Joshua Peek <josh@joshpeek.com> | 2009-09-06 22:29:29 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2009-09-06 22:29:29 -0500 |
commit | c531bd66651639c25cc8d1b90dd6b56e5db3581b (patch) | |
tree | 4a5e4501af6927a0f863c90768600c9b28f4d724 /actionpack/test/lib/controller | |
parent | ab8aac09d654c710d8bf4b6410c60ea98e5fd5dc (diff) | |
download | rails-c531bd66651639c25cc8d1b90dd6b56e5db3581b.tar.gz rails-c531bd66651639c25cc8d1b90dd6b56e5db3581b.tar.bz2 rails-c531bd66651639c25cc8d1b90dd6b56e5db3581b.zip |
Cleanup hacky routing with controller_path in url helper tests. This doesn't work in real life anyway.
Diffstat (limited to 'actionpack/test/lib/controller')
-rw-r--r-- | actionpack/test/lib/controller/fake_controllers.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/lib/controller/fake_controllers.rb b/actionpack/test/lib/controller/fake_controllers.rb index e7589e29ca..b96e91f4f7 100644 --- a/actionpack/test/lib/controller/fake_controllers.rb +++ b/actionpack/test/lib/controller/fake_controllers.rb @@ -11,6 +11,7 @@ module Admin end class ElsewhereController < ActionController::Base; end class AddressesController < ActionController::Base; end +class SessionsController < ActionController::Base; end # For speed test class SpeedController < ActionController::Base; end @@ -25,7 +26,6 @@ class UsersController < SpeedController; end class SettingsController < SpeedController; end class ChannelsController < SpeedController; end class ChannelVideosController < SpeedController; end -class SessionsController < SpeedController; end class LostPasswordsController < SpeedController; end class PagesController < SpeedController; end |