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
This commit is contained in:
Marius Balteanu
2023-10-23 17:23:37 +00:00
parent c0bc2136c5
commit 5e17a276a8
5 changed files with 20 additions and 4 deletions

View File

@@ -35,6 +35,12 @@ class WikiTest < ActiveSupport::TestCase
assert wiki.save
end
def test_create_default
wiki = Wiki.create_default(Project.find(1))
assert wiki.save
assert_equal "Wiki", wiki.start_page
end
def test_update
@wiki = Wiki.find(1)
@wiki.start_page = "Another start page"