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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
2829fa9a
Commit
2829fa9a
authored
Mar 22, 2018
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add specs for extracted pipeline-related methods
parent
f45358db
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
spec/models/ci/pipeline_spec.rb
spec/models/ci/pipeline_spec.rb
+18
-0
No files found.
spec/models/ci/pipeline_spec.rb
View file @
2829fa9a
...
...
@@ -177,6 +177,24 @@ describe Ci::Pipeline, :mailer do
end
end
describe
'#protected_ref?'
do
it
'delegates method to project'
do
expect
(
pipeline
).
not_to
be_protected_ref
end
end
describe
'#legacy_trigger'
do
let
(
:trigger_request
)
{
create
(
:ci_trigger_request
)
}
before
do
pipeline
.
trigger_requests
<<
trigger_request
end
it
'returns first trigger request'
do
expect
(
pipeline
.
legacy_trigger
).
to
eq
trigger_request
end
end
describe
'#auto_canceled?'
do
subject
{
pipeline
.
auto_canceled?
}
...
...
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