Calls to show with unspecified page name cause HTTP 404, not HTTP 500

This commit is contained in:
Alexey Verkhovsky 2005-03-26 05:37:04 +00:00
parent 6cceead11c
commit c73db9ff5d
2 changed files with 13 additions and 1 deletions

View file

@ -552,6 +552,14 @@ class WikiControllerTest < Test::Unit::TestCase
assert_redirected_to :web => 'wiki1', :action => 'new', :id => 'UnknownPage'
end
def test_show_no_page
r = process('show', 'id' => '', 'web' => 'wiki1')
assert_equal 404, r.response_code
r = process('show', 'web' => 'wiki1')
assert_equal 404, r.response_code
end
def test_tex
r = process('tex', 'web' => 'wiki1', 'id' => 'HomePage')