spec/lib/release_tools/auto_deploy/coordinated_pipeline/qa/notifier_spec.rb [81:102]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        allow(fake_client)
          .to receive(:pipeline_bridges)
          .and_return(bridges)

        allow(fake_notification)
          .to receive(:new)
          .and_return(double(execute: nil))
      end

      context 'with a smoke failure' do
        let(:smoke_status) { 'failed' }
        let(:smoke_main_status) { 'success' }

        it 'sends a slack notification' do
          expect(ReleaseTools::GitlabOpsClient)
            .to receive(:pipeline_bridges)
            .once

          expect(ReleaseTools::Slack::QaNotification)
            .to receive(:new)
            .with(
              {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spec/lib/release_tools/auto_deploy/post_deploy_migrations/qa/notifier_spec.rb [71:92]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        allow(fake_client)
          .to receive(:pipeline_bridges)
          .and_return(bridges)

        allow(fake_notification)
          .to receive(:new)
          .and_return(double(execute: nil))
      end

      context 'with a smoke failure' do
        let(:smoke_status) { 'failed' }
        let(:smoke_main_status) { 'success' }

        it 'sends a slack notification' do
          expect(ReleaseTools::GitlabOpsClient)
            .to receive(:pipeline_bridges)
            .once

          expect(ReleaseTools::Slack::QaNotification)
            .to receive(:new)
            .with(
              {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



