##// END OF EJS Templates
Russian "about_x_hours" translation changed by Mikhail Velkin (#12640)...
Russian "about_x_hours" translation changed by Mikhail Velkin (#12640) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11052 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r10445:ff2d374a1443
r10822:82d4adc35608
Show More
routing_test.rb
12 lines | 359 B | text/x-ruby | RubyLexer
Toshi MARUYAMA
add routing test to sample plugin...
r10445
require File.expand_path(File.dirname(__FILE__) + '../../../../../test/test_helper')
class SamplePluginRoutingTest < ActionController::IntegrationTest
def test_example
assert_routing(
{ :method => 'get', :path => "/projects/1234/hello" },
{ :controller => 'example', :action => 'say_hello',
:id => '1234' }
)
end
end