mirror of
https://github.com/redmine/redmine.git
synced 2025-11-08 14:26:04 +01:00
git-svn-id: http://svn.redmine.org/redmine/trunk@17997 e93f8b46-1217-0410-a6f0-8f06a7374b81
12 lines
356 B
Ruby
12 lines
356 B
Ruby
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
|