aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/fake_controllers.rb
blob: 43f933b0d8ad80494819d8e9ed80428f956a3708 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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