+
+ # test the right editor gets used when the user hasn't set a preference
+ def test_edit_without_preference
+ get(:edit, nil, { 'user' => users(:public_user).id })
+ assert_response :success
+ assert_template :partial => "_#{DEFAULT_EDITOR}", :count => 1
+ end
+
+ # and when they have...
+ def test_edit_with_preference
+ user = users(:public_user)
+ user.preferred_editor = "josm"
+ user.save!
+
+ get(:edit, nil, { 'user' => user.id })
+ assert_response :success
+ assert_template :partial => "_josm", :count => 1
+ end