1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/test/controller/fake_controllers.rb

24 lines
550 B
Ruby

module Object::Controllers
def self.const_available?(*args)
const_defined?(*args)
end
class ContentController < ActionController::Base
end
module Admin
def self.const_available?(*args)
const_defined?(*args)
end
class UserController < ActionController::Base
end
class NewsFeedController < ActionController::Base
end
end
end
ActionController::Routing::Routes.draw do |map|
map.route_one 'route_one', :controller => 'elsewhere', :action => 'flash_me'
map.connect ':controller/:action/:id'
end