debian-mirror-gitlab/spec/requests/api/graphql/mutations/boards/create_spec.rb
2021-09-30 23:02:18 +05:30

18 lines
318 B
Ruby

# 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