debian-mirror-gitlab/spec/requests/api/graphql/mutations/boards/lists/update_spec.rb
2021-06-08 01:23:25 +05:30

19 lines
692 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'Update of an existing board list' do
include GraphqlHelpers
let_it_be(:current_user) { create(:user) }
let_it_be(:group) { create(:group, :private) }
let_it_be(:board) { create(:board, group: group) }
let_it_be(:list) { create(:list, board: board, position: 0) }
let_it_be(:list2) { create(:list, board: board) }
let_it_be(:input) { { list_id: list.to_global_id.to_s, position: 1, collapsed: true } }
let(:mutation) { graphql_mutation(:update_board_list, input) }
let(:mutation_response) { graphql_mutation_response(:update_board_list) }
it_behaves_like 'a GraphQL request to update board list'
end