diff .svn/pristine/6d/6d3d8dfed27856a76e41a252f404513d7b64d5b0.svn-base @ 1464:261b3d9a4903 redmine-2.4

Update to Redmine 2.4 branch rev 12663
author Chris Cannam
date Tue, 14 Jan 2014 14:37:42 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.svn/pristine/6d/6d3d8dfed27856a76e41a252f404513d7b64d5b0.svn-base	Tue Jan 14 14:37:42 2014 +0000
@@ -0,0 +1,12 @@
+
+require File.expand_path(File.dirname(__FILE__) + '../../../../../test/test_helper')
+
+class SamplePluginRoutingTest < ActionDispatch::IntegrationTest
+  def test_example
+    assert_routing(
+        { :method => 'get', :path => "/projects/1234/hello" },
+        { :controller => 'example', :action => 'say_hello',
+          :id => '1234' }
+      )
+  end
+end