Add define a "stuff" controller in fixtures to support routing tests

This commit is contained in:
Joshua Peek 2009-10-10 19:53:40 -05:00
parent b9ce8216fa
commit 7bc5e3bd02
1 changed files with 1 additions and 0 deletions

View File

@ -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