summaryrefslogtreecommitdiff
path: root/spec/requests/api/graphql/mutations/boards/create_spec.rb
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