Chris@1464: Chris@1464: require File.expand_path(File.dirname(__FILE__) + '../../../../../test/test_helper') Chris@1464: Chris@1464: class SamplePluginRoutingTest < ActionDispatch::IntegrationTest Chris@1464: def test_example Chris@1464: assert_routing( Chris@1464: { :method => 'get', :path => "/projects/1234/hello" }, Chris@1464: { :controller => 'example', :action => 'say_hello', Chris@1464: :id => '1234' } Chris@1464: ) Chris@1464: end Chris@1464: end