spec/lib/release_tools/pre/notifier_spec.rb [44:68]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      notifier.execute
    end

    context 'when the bridge is not found' do
      let(:bridges) { Gitlab::PaginatedResponse.new([]) }

      it 'does not send a slack notification' do
        expect(notification).not_to receive(:new)

        notifier.execute
      end

      it 'calls the pipeline bridges api at least twice' do
        expect(client)
          .to receive(:pipeline_bridges)
          .at_least(:twice)

        notifier.execute
      end
    end

    context 'when the downstream pipeline is not found' do
      let(:bridge) do
        create(
          :bridge_job,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spec/lib/release_tools/release_environment/deploy_notifier_spec.rb [48:72]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      notifier.execute
    end

    context 'when the bridge is not found' do
      let(:bridges) { Gitlab::PaginatedResponse.new([]) }

      it 'does not send a slack notification' do
        expect(notification).not_to receive(:new)

        notifier.execute
      end

      it 'calls the pipeline bridges api at least twice' do
        expect(client)
          .to receive(:pipeline_bridges)
          .at_least(:twice)

        notifier.execute
      end
    end

    context 'when the downstream pipeline is not found' do
      let(:bridge) do
        create(
          :bridge_job,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



