2021-01-03 14:25:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe Mutations::Boards::Create do
|
|
|
|
let_it_be(:parent) { create(:project) }
|
2021-09-30 23:02:18 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
let(:project_path) { parent.full_path }
|
|
|
|
let(:params) do
|
|
|
|
{
|
|
|
|
project_path: project_path,
|
|
|
|
name: name
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'boards create mutation'
|
|
|
|
end
|