2012-11-23 08:36:12 +00:00
|
|
|
module ExtraRoutes
|
|
|
|
def add(map)
|
|
|
|
|
2013-07-10 06:46:59 +00:00
|
|
|
map.match '/tests-core', :to => 'tests#core', :via => :get
|
|
|
|
map.match '/tests-form', :to => 'tests#form', :via => :get
|
|
|
|
map.match '/tests/wait/:sec', :to => 'tests#wait', :via => :get
|
2012-11-23 08:36:12 +00:00
|
|
|
|
|
|
|
end
|
|
|
|
module_function :add
|
2013-05-27 07:27:00 +00:00
|
|
|
end
|