Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pipeline_success_email.text.erb_spec.rb « notify « views « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02334a48fa38883248d3f6f46b7078d080fc032d (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'notify/pipeline_success_email.text.erb' do
  it_behaves_like 'pipeline status changes email' do
    let(:title) { "Pipeline ##{pipeline.id} has passed!" }
    let(:status) { :success }
  end
end