10 lines
283 B
Ruby
10 lines
283 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe 'notify/pipeline_fixed_email.html.haml' do
|
|
it_behaves_like 'pipeline status changes email' do
|
|
let(:title) { "Pipeline has been fixed and ##{pipeline.id} has passed!" }
|
|
let(:status) { :success }
|
|
end
|
|
end
|