aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/lib/controller/fake_controllers.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-10-10 19:53:40 -0500
committerJoshua Peek <josh@joshpeek.com>2009-10-10 21:30:50 -0500
commit7bc5e3bd02632bd3545b9097e14ea289e9531bb5 (patch)
tree331d2179e98b28e811653dedb71cd118a94ebd14 /actionpack/test/lib/controller/fake_controllers.rb
parentb9ce8216fa849a47ad0b0f99fa510e226a23c12e (diff)
downloadrails-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/test/lib/controller/fake_controllers.rb')
-rw-r--r--actionpack/test/lib/controller/fake_controllers.rb1
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