You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trustieforge/extra/sample_plugin/test/integration/routing_test.rb

13 lines
357 B

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