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
031b1623
Commit
031b1623
authored
Aug 30, 2016
by
Lin Jen-Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix test for Pipeline#duration
parent
7e32e2ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
5 deletions
+17
-5
spec/models/ci/pipeline_spec.rb
spec/models/ci/pipeline_spec.rb
+17
-5
No files found.
spec/models/ci/pipeline_spec.rb
View file @
031b1623
...
...
@@ -124,17 +124,22 @@ describe Ci::Pipeline, models: true do
describe
'state machine'
do
let
(
:current
)
{
Time
.
now
.
change
(
usec:
0
)
}
let
(
:build
)
{
create
:ci_build
,
name:
'build1'
,
pipeline:
pipeline
}
let
(
:build
)
{
create_build
(
'build1'
,
current
-
60
)
}
let
(
:another_build
)
{
create_build
(
'build2'
,
current
+
20
)
}
describe
'#duration'
do
before
do
travel_to
(
current
-
120
)
do
pipeline
.
run
end
pipeline
.
run
travel_to
(
current
)
do
pipeline
.
succeed
build
.
success
end
travel_to
(
current
+
80
)
do
another_build
.
drop
end
pipeline
.
drop
end
it
'matches sum of builds duration'
do
...
...
@@ -169,6 +174,13 @@ describe Ci::Pipeline, models: true do
expect
(
pipeline
.
reload
.
finished_at
).
to
be_nil
end
end
def
create_build
(
name
,
started_at
=
current
)
create
(
:ci_build
,
name:
name
,
pipeline:
pipeline
,
started_at:
started_at
)
end
end
describe
'#branch?'
do
...
...
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