diff options
author | Joshua Peek <josh@joshpeek.com> | 2009-09-06 21:42:05 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2009-09-06 21:42:05 -0500 |
commit | 9f47f8d892ee35a08b5556acc4ddbe93b0461cfd (patch) | |
tree | cb3bd3d58fb9bf006826ec4ef710c1b6540e1c36 /actionpack/test/lib | |
parent | 1c02fc295dc8281b8c3352bdd95869d5421aff08 (diff) | |
download | rails-9f47f8d892ee35a08b5556acc4ddbe93b0461cfd.tar.gz rails-9f47f8d892ee35a08b5556acc4ddbe93b0461cfd.tar.bz2 rails-9f47f8d892ee35a08b5556acc4ddbe93b0461cfd.zip |
Fix isolated running of AddressesTest
Diffstat (limited to 'actionpack/test/lib')
-rw-r--r-- | actionpack/test/lib/controller/fake_controllers.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/test/lib/controller/fake_controllers.rb b/actionpack/test/lib/controller/fake_controllers.rb index d41547b902..e7589e29ca 100644 --- a/actionpack/test/lib/controller/fake_controllers.rb +++ b/actionpack/test/lib/controller/fake_controllers.rb @@ -10,6 +10,7 @@ module Admin class NewsFeedController < ActionController::Base; end end class ElsewhereController < ActionController::Base; end +class AddressesController < ActionController::Base; end # For speed test class SpeedController < ActionController::Base; end |