##// END OF EJS Templates
Japanese (Blocks / Blocked by) translation changed by Go MAEDA (#21176)...
Japanese (Blocks / Blocked by) translation changed by Go MAEDA (#21176) git-svn-id: http://svn.redmine.org/redmine/trunk@14882 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11025:9645cb83f232
r14500:24e2f4641922
Show More
routing_test.rb
12 lines | 357 B | text/x-ruby | RubyLexer
require File.expand_path(File.dirname(__FILE__) + '../../../../../test/test_helper')
class SamplePluginRoutingTest < ActionDispatch::IntegrationTest
def test_example
assert_routing(
{ :method => 'get', :path => "/projects/1234/hello" },
{ :controller => 'example', :action => 'say_hello',
:id => '1234' }
)
end
end