Welcome to mirror list, hosted at ThFree Co, Russian Federation.

lists_destroy_service_shared_examples.rb « boards « services « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 52d427d66841dd34129811b2dc87464341442128 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true

RSpec.shared_examples 'lists destroy service' do
  context 'when list type is label' do
    it 'removes list from board' do
      service = described_class.new(parent, user)

      expect { service.execute(list) }.to change { board.lists.count }.by(-1)
    end

    it 'decrements position of higher lists' do
      development = create(list_type, params.merge(position: 0))
      review      = create(list_type, params.merge(position: 1))
      staging     = create(list_type, params.merge(position: 2))

      described_class.new(parent, user).execute(development)

      expect(review.reload.position).to eq 0
      expect(staging.reload.position).to eq 1
      expect(closed_list.reload.position).to be_nil
    end
  end

  it 'does not remove list from board when list type is closed' do
    service = described_class.new(parent, user)

    expect { service.execute(closed_list) }.not_to change { board.lists.count }
  end
end