debian-mirror-gitlab/spec/services/boards/destroy_service_spec.rb
2023-05-27 22:25:52 +05:30

23 lines
530 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Boards::DestroyService, feature_category: :team_planning do
context 'with project board' do
let_it_be(:parent) { create(:project) }
let(:boards) { parent.boards }
let(:board_factory) { :board }
it_behaves_like 'board destroy service'
end
context 'with group board' do
let_it_be(:parent) { create(:group) }
let(:boards) { parent.boards }
let(:board_factory) { :board }
it_behaves_like 'board destroy service'
end
end