From 9c56418f4e72a278efba6c5a4403ae4157d02421 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Fri, 26 Mar 2021 02:19:02 +0000 Subject: Add edit button to Wiki sidebar (#32629). Patch by Takenori TAKAKI. git-svn-id: http://svn.redmine.org/redmine/trunk@20850 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/functional/wiki_controller_test.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test/functional') diff --git a/test/functional/wiki_controller_test.rb b/test/functional/wiki_controller_test.rb index 8ae7ad509..73b1e3658 100644 --- a/test/functional/wiki_controller_test.rb +++ b/test/functional/wiki_controller_test.rb @@ -46,6 +46,14 @@ class WikiControllerTest < Redmine::ControllerTest assert_select 'a[href=?]', '/projects/ecookbook/wiki/CookBook_documentation.txt' end + def test_edit_sidebar_link + Role.anonymous.add_permission! :edit_wiki_pages + Role.anonymous.add_permission! :protect_wiki_pages + get :show, :params => {:project_id => 'ecookbook'} + assert_response :success + assert_select 'a[href=?]', '/projects/ecookbook/wiki/sidebar/edit' + end + def test_show_page_with_name get :show, :params => {:project_id => 1, :id => 'Another_page'} assert_response :success -- cgit v1.2.3