summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/services/boards/boards_create_service.rb
blob: 5bdc04f660fc4db7f25c29b7934a74d8ce328ad6 (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
shared_examples 'boards create service' do
  context 'when parent does not have a board' do
    it 'creates a new board' do
      expect { service.execute }.to change(Board, :count).by(1)
    end

    it 'creates the default lists' do
      board = service.execute

      expect(board.lists.size).to eq 2
      expect(board.lists.first).to be_backlog
      expect(board.lists.last).to be_closed
    end
  end

  context 'when parent has a board' do
    before do
      create(:board, parent: parent)
    end

    it 'does not create a new board' do
      expect(service).to receive(:can_create_board?) { false }

      expect { service.execute }.not_to change(parent.boards, :count)
    end
  end
end