comparison extra/sample_plugin/test/integration/routing_test.rb @ 1115:433d4f72a19b redmine-2.2

Update to Redmine SVN revision 11137 on 2.2-stable branch
author Chris Cannam
date Mon, 07 Jan 2013 12:01:42 +0000
parents
children 622f24f53b42
comparison
equal deleted inserted replaced
929:5f33065ddc4b 1115:433d4f72a19b
1
2 require File.expand_path(File.dirname(__FILE__) + '../../../../../test/test_helper')
3
4 class SamplePluginRoutingTest < ActionController::IntegrationTest
5 def test_example
6 assert_routing(
7 { :method => 'get', :path => "/projects/1234/hello" },
8 { :controller => 'example', :action => 'say_hello',
9 :id => '1234' }
10 )
11 end
12 end