mirror of
https://github.com/redmine/redmine.git
synced 2025-11-02 03:15:57 +01:00
Patch by Go MAEDA. git-svn-id: https://svn.redmine.org/redmine/trunk@22016 e93f8b46-1217-0410-a6f0-8f06a7374b81
12 lines
319 B
Ruby
12 lines
319 B
Ruby
require_relative '../../../../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
|