Mercurial > hg > soundsoftware-site
view extra/sample_plugin/test/integration/routing_test.rb @ 1558:a0c46d6fe7bc feature_1136
Add hgtags export
author | Chris Cannam |
---|---|
date | Thu, 14 Jan 2016 09:56:38 +0000 |
parents | 261b3d9a4903 |
children |
line wrap: on
line source
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