summaryrefslogtreecommitdiffstats
path: root/test/integration/api_test/wiki_pages_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/api_test/wiki_pages_test.rb')
-rw-r--r--test/integration/api_test/wiki_pages_test.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/integration/api_test/wiki_pages_test.rb b/test/integration/api_test/wiki_pages_test.rb
index ae980129f..828c033f1 100644
--- a/test/integration/api_test/wiki_pages_test.rb
+++ b/test/integration/api_test/wiki_pages_test.rb
@@ -119,6 +119,17 @@ class Redmine::ApiTest::WikiPagesTest < Redmine::ApiTest::Base
assert_equal 'jsmith', page.content.author.login
end
+ test "GET /projects/:project_id/wiki/:title/:version.xml should not includ author if not exists" do
+ WikiContentVersion.find_by_id(2).update(author_id: nil)
+
+ get '/projects/ecookbook/wiki/CookBook_documentation/2.xml'
+ assert_response 200
+ assert_equal 'application/xml', response.media_type
+ assert_select 'wiki_page' do
+ assert_select 'author', 0
+ end
+ end
+
test "PUT /projects/:project_id/wiki/:title.xml with current versino should update wiki page" do
assert_no_difference 'WikiPage.count' do
assert_difference 'WikiContent::Version.count' do