diff options
Diffstat (limited to 'test/functional/wiki_controller_test.rb')
-rw-r--r-- | test/functional/wiki_controller_test.rb | 8 |
1 files changed, 8 insertions, 0 deletions
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 |