summaryrefslogtreecommitdiffstats
path: root/test/functional/wikis_controller_test.rb
diff options
context:
space:
mode:
authorMarius Balteanu <marius.balteanu@zitec.com>2023-10-23 17:23:37 +0000
committerMarius Balteanu <marius.balteanu@zitec.com>2023-10-23 17:23:37 +0000
commit5e17a276a8ca06b8337f0f71081267b292271a6c (patch)
treee958bf1f2b6aa7664e929b894b15448da446d030 /test/functional/wikis_controller_test.rb
parentc0bc2136c57eb8c2311c1349d3d9604bcf0ceb14 (diff)
downloadredmine-5e17a276a8ca06b8337f0f71081267b292271a6c.tar.gz
redmine-5e17a276a8ca06b8337f0f71081267b292271a6c.zip
Traditional Chinese translation update (#39221).
Patch by ChunChang (Nagaharu) Lo. git-svn-id: https://svn.redmine.org/redmine/trunk@22368 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/wikis_controller_test.rb')
-rw-r--r--test/functional/wikis_controller_test.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/functional/wikis_controller_test.rb b/test/functional/wikis_controller_test.rb
index 9f3f9bffb..ecad3a4a4 100644
--- a/test/functional/wikis_controller_test.rb
+++ b/test/functional/wikis_controller_test.rb
@@ -35,13 +35,17 @@ class WikisControllerTest < Redmine::ControllerTest
end
end
- def test_post_destroy_should_delete_wiki
+ def test_post_destroy_should_reinitialize_empty_wiki
set_tmp_attachments_directory
@request.session[:user_id] = 1
+ wiki = Project.find(1).wiki
post :destroy, :params => {:id => 1, :confirm => 1}
assert_redirected_to :controller => 'projects',
:action => 'show', :id => 'ecookbook'
- assert_nil Project.find(1).wiki
+
+ new_wiki = Project.find(1).wiki
+ assert_not_equal wiki, new_wiki
+ assert_equal "Wiki", new_wiki.start_page
end
def test_not_found