routing_test.rb
12 lines
| 359 B
| text/x-ruby
|
RubyLexer
|
r10445 | |||
require File.expand_path(File.dirname(__FILE__) + '../../../../../test/test_helper') | ||||
class SamplePluginRoutingTest < ActionController::IntegrationTest | ||||
def test_example | ||||
assert_routing( | ||||
{ :method => 'get', :path => "/projects/1234/hello" }, | ||||
{ :controller => 'example', :action => 'say_hello', | ||||
:id => '1234' } | ||||
) | ||||
end | ||||
end | ||||