blob: defd8190edae9f659d5ed9b59c3b297c2fc34682 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'notify/pipeline_failed_email.html.haml' do
it_behaves_like 'pipeline status changes email' do
let(:title) { "Pipeline ##{pipeline.id} has failed!" }
let(:status) { :failed }
end
end
|