Commit 58de165129445ebcb67e5924e0a8c8a3ce170f47
1 parent
c689cd18
Exists in
master
and in
29 other branches
Removing test for unused route
Showing
1 changed file
with
0 additions
and
4 deletions
Show diff stats
test/integration/routing_test.rb
... | ... | @@ -138,10 +138,6 @@ class RoutingTest < ActionController::IntegrationTest |
138 | 138 | assert_routing('/assets/my-asset/a/b/c', :controller => 'search', :action => 'assets', :asset => 'my-asset', :category_path => ['a', 'b', 'c']) |
139 | 139 | end |
140 | 140 | |
141 | - def test_directory_routing | |
142 | - assert_routing('/directory/my-asset/f/a/b/c', :controller => 'search', :action => 'directory', :asset => 'my-asset', :initial => 'f', :category_path => [ 'a', 'b', 'c']) | |
143 | - end | |
144 | - | |
145 | 141 | def test_content_view_with_dot |
146 | 142 | assert_routing('/ze.withdot', :controller => 'content_viewer', :action => 'view_page', :profile => 'ze.withdot', :page => []) |
147 | 143 | end | ... | ... |