diff options
author | Joshua Peek <josh@joshpeek.com> | 2009-10-10 19:53:40 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2009-10-10 21:30:50 -0500 |
commit | 7bc5e3bd02632bd3545b9097e14ea289e9531bb5 (patch) | |
tree | 331d2179e98b28e811653dedb71cd118a94ebd14 /actionpack | |
parent | b9ce8216fa849a47ad0b0f99fa510e226a23c12e (diff) | |
download | rails-7bc5e3bd02632bd3545b9097e14ea289e9531bb5.tar.gz rails-7bc5e3bd02632bd3545b9097e14ea289e9531bb5.tar.bz2 rails-7bc5e3bd02632bd3545b9097e14ea289e9531bb5.zip |
Add define a "stuff" controller in fixtures to support routing tests
Diffstat (limited to 'actionpack')
-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 9ec7f330b8..54b6e3ba4c 100644 --- a/actionpack/test/lib/controller/fake_controllers.rb +++ b/actionpack/test/lib/controller/fake_controllers.rb @@ -7,6 +7,7 @@ module Admin class << self; alias_method :const_available?, :const_defined?; end class UserController < ActionController::Base; end class NewsFeedController < ActionController::Base; end + class StuffController < ActionController::Base; end end module Api |