rails/actionpack/test/controller/fake_controllers.rb
2005-07-15 15:00:39 +00:00

24 lines
471 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.connect ':controller/:action/:id'
end