debian-mirror-gitlab/spec/views/notify/pipeline_failed_email.html.haml_spec.rb

11 lines
264 B
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe 'notify/pipeline_failed_email.html.haml' do
2020-04-08 14:13:33 +05:30
it_behaves_like 'pipeline status changes email' do
2021-03-08 18:12:59 +05:30
let(:title) { "Pipeline ##{pipeline.id} has failed!" }
2020-04-08 14:13:33 +05:30
let(:status) { :failed }
2017-08-17 22:00:37 +05:30
end
end