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