Adds a test for invalid query statement.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8074 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
6d498a3c46
commit
e77046ba4e
|
@ -656,6 +656,16 @@ class IssuesControllerTest < ActionController::TestCase
|
||||||
assert @response.body.blank?
|
assert @response.body.blank?
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_index_should_rescue_invalid_sql_query
|
||||||
|
Query.any_instance.stubs(:statement).returns("INVALID STATEMENT")
|
||||||
|
|
||||||
|
get :index
|
||||||
|
assert_response 500
|
||||||
|
assert_tag 'p', :content => /An error occurred/
|
||||||
|
assert_nil session[:query]
|
||||||
|
assert_nil session[:issues_index_sort]
|
||||||
|
end
|
||||||
|
|
||||||
def test_show_by_anonymous
|
def test_show_by_anonymous
|
||||||
get :show, :id => 1
|
get :show, :id => 1
|
||||||
assert_response :success
|
assert_response :success
|
||||||
|
|
Loading…
Reference in New Issue