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