Issue destroy is now DELETE only.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8155 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
ec50101db1
commit
4cedb0b628
|
@ -53,7 +53,7 @@ class ContextMenusControllerTest < ActionController::TestCase
|
|||
:attributes => { :href => '/issues/move/new?ids%5B%5D=1',
|
||||
:class => 'icon-move' }
|
||||
assert_tag :tag => 'a', :content => 'Delete',
|
||||
:attributes => { :href => '/issues/destroy?ids%5B%5D=1',
|
||||
:attributes => { :href => '/issues?ids%5B%5D=1',
|
||||
:class => 'icon-del' }
|
||||
end
|
||||
|
||||
|
@ -94,7 +94,7 @@ class ContextMenusControllerTest < ActionController::TestCase
|
|||
:attributes => { :href => "/issues/move/new?#{ids}",
|
||||
:class => 'icon-move' }
|
||||
assert_tag :tag => 'a', :content => 'Delete',
|
||||
:attributes => { :href => "/issues/destroy?#{ids}",
|
||||
:attributes => { :href => "/issues?#{ids}",
|
||||
:class => 'icon-del' }
|
||||
end
|
||||
|
||||
|
@ -120,7 +120,7 @@ class ContextMenusControllerTest < ActionController::TestCase
|
|||
:attributes => { :href => "/issues/bulk_edit?#{ids}&issue%5Bassigned_to_id%5D=2",
|
||||
:class => '' }
|
||||
assert_tag :tag => 'a', :content => 'Delete',
|
||||
:attributes => { :href => "/issues/destroy?#{ids}",
|
||||
:attributes => { :href => "/issues?#{ids}",
|
||||
:class => 'icon-del' }
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue