Add test for 462.
This commit is contained in:
bootstraponline
2012-08-06 15:52:19 -06:00
parent 9a0c1f2605
commit ea2254b9bd
2 changed files with 22 additions and 1 deletions
+4 -1
View File
@@ -91,6 +91,9 @@ module Precious
end
# path is set to name if path is nil.
# if path is 'a/b' and a and b are dirs, then
# path must have a trailing slash 'a/b/' or
# extract_path will trim path to 'a'
# name, path, version
def wiki_page( name, path = nil, version = nil)
path = name if path.nil?
@@ -193,7 +196,7 @@ module Precious
begin
wiki.write_page(name, format, params[:content], commit_message)
page = wiki.page(name)
redirect to("/#{page.escaped_url_path}")
redirect to("/#{page.escaped_url_path}") unless page.nil?
rescue Gollum::DuplicatePageError => e
@message = "Duplicate page: #{e.message}"
mustache :error