Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
gitlab-ce
Commits
720968cc
Commit
720968cc
authored
Oct 08, 2016
by
Lin Jen-Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix tests for subject updates
parent
355ffec7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
spec/services/ci/send_pipeline_notification_service_spec.rb
spec/services/ci/send_pipeline_notification_service_spec.rb
+2
-2
No files found.
spec/services/ci/send_pipeline_notification_service_spec.rb
View file @
720968cc
...
...
@@ -32,14 +32,14 @@ describe Ci::SendPipelineNotificationService, services: true do
context
'with success pipeline'
do
let
(
:status
)
{
'success'
}
let
(
:email_subject
)
{
'Pipeline succeeded for'
}
let
(
:email_subject
)
{
"Pipeline #
#{
pipeline
.
id
}
has succeeded"
}
it_behaves_like
'sending emails'
end
context
'with failed pipeline'
do
let
(
:status
)
{
'failed'
}
let
(
:email_subject
)
{
'Pipeline failed for'
}
let
(
:email_subject
)
{
"Pipeline #
#{
pipeline
.
id
}
has failed"
}
it_behaves_like
'sending emails'
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment