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
Boxiang Sun
gitlab-ce
Commits
8d96062f
Commit
8d96062f
authored
Sep 02, 2016
by
Lin Jen-Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make sure the algorithm did exclude gaps
parent
defd8899
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
spec/models/ci/pipeline_spec.rb
spec/models/ci/pipeline_spec.rb
+2
-2
No files found.
spec/models/ci/pipeline_spec.rb
View file @
8d96062f
...
...
@@ -126,7 +126,7 @@ describe Ci::Pipeline, models: true do
let
(
:current
)
{
Time
.
now
.
change
(
usec:
0
)
}
let
(
:build
)
{
create_build
(
'build1'
,
current
,
10
)
}
let
(
:build_b
)
{
create_build
(
'build2'
,
current
,
20
)
}
let
(
:build_c
)
{
create_build
(
'build3'
,
current
+
40
,
2
0
)
}
let
(
:build_c
)
{
create_build
(
'build3'
,
current
+
50
,
1
0
)
}
describe
'#duration and #pending_duration'
do
before
do
...
...
@@ -156,7 +156,7 @@ describe Ci::Pipeline, models: true do
pipeline
.
reload
expect
(
pipeline
.
duration
).
to
eq
(
40
)
expect
(
pipeline
.
pending_duration
).
to
eq
(
3
5
)
expect
(
pipeline
.
pending_duration
).
to
eq
(
2
5
)
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