From 1c8cf4ef8338736ebcaa905f8932545a24e817c6 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sat, 16 Feb 2008 13:19:33 +0000 Subject: Added the following permissions (#527, #585, #627): * edit_issue_notes: let user edit any notes * edit_own_issue_notes: let user edit his own notes only git-svn-id: http://redmine.rubyforge.org/svn/trunk@1152 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/functional/journals_controller_test.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test') diff --git a/test/functional/journals_controller_test.rb b/test/functional/journals_controller_test.rb index f231d10ee..e6a90185c 100644 --- a/test/functional/journals_controller_test.rb +++ b/test/functional/journals_controller_test.rb @@ -48,4 +48,12 @@ class JournalsControllerTest < ActionController::TestCase assert_select_rjs :replace, 'journal-2-notes' assert_equal 'Updated notes', Journal.find(2).notes end + + def test_post_edit_with_empty_notes + @request.session[:user_id] = 1 + xhr :post, :edit, :id => 2, :notes => '' + assert_response :success + assert_select_rjs :remove, 'change-2' + assert_nil Journal.find_by_id(2) + end end -- cgit v1.2.3