# HG changeset patch # Parent db565f39c4cd92f1c8405a23fde095d81bca026f # User Toshi MARUYAMA imported patch issue-26564-test.diff diff --git a/test/functional/enumerations_controller_test.rb b/test/functional/enumerations_controller_test.rb --- a/test/functional/enumerations_controller_test.rb +++ b/test/functional/enumerations_controller_test.rb @@ -124,6 +124,18 @@ class EnumerationsControllerTest < Redmi assert_select_error /name cannot be blank/i end + def test_update_position + assert_equal 2, Enumeration.find(2).position + put :update, :params => { + :id => 2, + :enumeration => { + :position => 1, + } + } + assert_response 302 + assert_equal 1, Enumeration.find(2).position + end + def test_destroy_enumeration_not_in_use assert_difference 'IssuePriority.count', -1 do delete :destroy, :params => {