# 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