1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-24 01:11:12 +00:00

fix source indent of WikiIntegrationTest

git-svn-id: http://svn.redmine.org/redmine/trunk@20390 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-11-16 12:21:39 +00:00
parent d31c89a574
commit 5115ff8b17

View File

@ -42,12 +42,16 @@ class WikiIntegrationTest < Redmine::IntegrationTest
assert_response :success
# this update should not end up with a loss of content
put '/projects/ecookbook/wiki/Wiki', params: {
content: {
text: "# Wiki\r\n\r\ncontent", comments: ""
},
wiki_page: { parent_id: "" }
}
put(
'/projects/ecookbook/wiki/Wiki',
:params => {
:content => {
:text => "# Wiki\r\n\r\ncontent",
:comments => ""
},
:wiki_page => {:parent_id => ""}
}
)
assert_redirected_to "/projects/ecookbook/wiki/Wiki"
follow_redirect!
assert_select 'div', /content/
@ -55,17 +59,26 @@ class WikiIntegrationTest < Redmine::IntegrationTest
# Let's assume somebody else, or the same user in another tab, renames the
# page while it is being edited.
post '/projects/ecookbook/wiki/Wiki/rename', params: { wiki_page: { title: "NewTitle" } }
post(
'/projects/ecookbook/wiki/Wiki/rename',
:params => {
:wiki_page => {:title => "NewTitle"}
}
)
assert_redirected_to "/projects/ecookbook/wiki/NewTitle"
# this update should not end up with a loss of content
put '/projects/ecookbook/wiki/Wiki', params: {
content: {
version: content.version, text: "# Wiki\r\n\r\nnew content", comments: ""
},
wiki_page: { parent_id: "" }
}
put(
'/projects/ecookbook/wiki/Wiki',
:params => {
:content => {
:version => content.version,
:text => "# Wiki\r\n\r\nnew content",
:comments => ""
},
:wiki_page => {:parent_id => ""}
}
)
assert_redirected_to "/projects/ecookbook/wiki/NewTitle"
follow_redirect!
assert_select 'div', /new content/