Welcome to mirror list, hosted at ThFree Co, Russian Federation.

create_spec.rb « boards « mutations « graphql « api « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 22d05f36f0f8977f0acaf5f365ef66628b0bcdbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Mutations::Boards::Create do
  let_it_be(:parent) { create(:project) }

  let(:project_path) { parent.full_path }
  let(:params) do
    {
      project_path: project_path,
      name: name
    }
  end

  it_behaves_like 'boards create mutation'
end