mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-20 07:21:12 +00:00
This will be changed to true in the future. git-svn-id: http://svn.redmine.org/redmine/trunk@17947 e93f8b46-1217-0410-a6f0-8f06a7374b81
14 lines
388 B
Ruby
14 lines
388 B
Ruby
# frozen_string_literal: false
|
|
|
|
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
|