From 537be80be26c38d5384d588873d2682fd908ee62 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Mon, 16 Jul 2012 17:15:40 +0000 Subject: Adds a macro for inserting thumbnails in formatted text (#3510). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10013 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/integration/routing/attachments_test.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/integration') diff --git a/test/integration/routing/attachments_test.rb b/test/integration/routing/attachments_test.rb index ba4bb2c36..fc54dea41 100644 --- a/test/integration/routing/attachments_test.rb +++ b/test/integration/routing/attachments_test.rb @@ -49,6 +49,10 @@ class RoutingAttachmentsTest < ActionController::IntegrationTest { :method => 'get', :path => "/attachments/thumbnail/1" }, { :controller => 'attachments', :action => 'thumbnail', :id => '1' } ) + assert_routing( + { :method => 'get', :path => "/attachments/thumbnail/1/200" }, + { :controller => 'attachments', :action => 'thumbnail', :id => '1', :size => '200' } + ) assert_routing( { :method => 'delete', :path => "/attachments/1" }, { :controller => 'attachments', :action => 'destroy', :id => '1' } -- cgit v1.2.3