mirror of
https://github.com/redmine/redmine.git
synced 2025-11-02 03:15:57 +01:00
Moves test to non-transactional fixtures tests (failure with postgresql).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8078 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -77,4 +77,14 @@ class IssuesControllerTransactionTest < ActionController::TestCase
|
||||
assert_tag :tag => 'div', :attributes => { :id => 'errorExplanation' },
|
||||
:content => /Data has been updated by another user/
|
||||
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
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user