debian-mirror-gitlab/spec/services/boards/create_service_spec.rb
2020-08-09 17:44:08 +05:30

24 lines
542 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.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