annotate .svn/pristine/6d/6d3d8dfed27856a76e41a252f404513d7b64d5b0.svn-base @ 1519:afce8026aaeb redmine-2.4-integration

Merge from branch "live"
author Chris Cannam
date Tue, 09 Sep 2014 09:34:53 +0100
parents 261b3d9a4903
children
rev   line source
Chris@1464 1
Chris@1464 2 require File.expand_path(File.dirname(__FILE__) + '../../../../../test/test_helper')
Chris@1464 3
Chris@1464 4 class SamplePluginRoutingTest < ActionDispatch::IntegrationTest
Chris@1464 5 def test_example
Chris@1464 6 assert_routing(
Chris@1464 7 { :method => 'get', :path => "/projects/1234/hello" },
Chris@1464 8 { :controller => 'example', :action => 'say_hello',
Chris@1464 9 :id => '1234' }
Chris@1464 10 )
Chris@1464 11 end
Chris@1464 12 end