+
+ private
+
+ def check_successful_response_xml(comment, comment_visible:)
+ assert_response :success
+ assert_equal "application/xml", response.media_type
+ assert_dom "osm", 1 do
+ assert_dom "> changeset", 1 do
+ assert_dom "> @id", comment.changeset_id.to_s
+ assert_dom "> @comments_count", comment_visible ? "1" : "0"
+ end
+ end
+
+ assert_equal comment_visible, comment.reload.visible
+ end