BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
a92dd544
Commit
a92dd544
authored
Aug 05, 2016
by
Lin Jen-Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Define utility functions later, feedback:
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5620#note_13581143
parent
584258db
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
pipeline_spec.rb
spec/models/ci/pipeline_spec.rb
+10
-10
No files found.
spec/models/ci/pipeline_spec.rb
View file @
a92dd544
...
...
@@ -562,16 +562,6 @@ describe Ci::Pipeline, models: true do
end
context
'with multiple builds'
do
def
create_build
(
name
)
create
(
:ci_build
,
:pending
,
pipeline:
pipeline
,
name:
name
)
end
def
requested
(
status
)
have_requested
(
:post
,
hook
.
url
).
with
do
|
req
|
JSON
.
parse
(
req
.
body
)[
'object_attributes'
][
'status'
]
==
status
end
.
once
end
let
(
:build_a
)
{
create_build
(
'a'
)
}
let
(
:build_b
)
{
create_build
(
'b'
)
}
...
...
@@ -587,6 +577,16 @@ describe Ci::Pipeline, models: true do
expect
(
WebMock
).
to
requested
(
status
)
end
end
def
create_build
(
name
)
create
(
:ci_build
,
:pending
,
pipeline:
pipeline
,
name:
name
)
end
def
requested
(
status
)
have_requested
(
:post
,
hook
.
url
).
with
do
|
req
|
JSON
.
parse
(
req
.
body
)[
'object_attributes'
][
'status'
]
==
status
end
.
once
end
end
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