blob: 0b6bb76cc4d1dec197baa70263d67b22b20dcede (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# 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
|