debian-mirror-gitlab/spec/services/boards/create_service_spec.rb
2019-07-31 17:26:46 +00:00

24 lines
536 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
describe Boards::CreateService do
describe '#execute' do
context 'when board parent is a project' do
let(:parent) { create(:project) }
subject(:service) { described_class.new(parent, double) }
it_behaves_like 'boards create service'
end
context 'when board parent is a group' do
let(:parent) { create(:group) }
subject(:service) { described_class.new(parent, double) }
it_behaves_like 'boards create service'
end
end
end