To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / extra / sample_plugin / test / integration / routing_test.rb @ 1298:4f746d8966dd

History | View | Annotate | Download (357 Bytes)

1 1115:433d4f72a19b Chris
2
require File.expand_path(File.dirname(__FILE__) + '../../../../../test/test_helper')
3
4 1295:622f24f53b42 Chris
class SamplePluginRoutingTest < ActionDispatch::IntegrationTest
5 1115:433d4f72a19b Chris
  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