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
24dd70d3
Commit
24dd70d3
authored
8 years ago
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extend tests for pipeline detailed status helpers
parent
8f743ede
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
12 deletions
+18
-12
spec/lib/gitlab/ci/status/pipeline/common_spec.rb
spec/lib/gitlab/ci/status/pipeline/common_spec.rb
+18
-12
No files found.
spec/lib/gitlab/ci/status/pipeline/common_spec.rb
View file @
24dd70d3
...
@@ -2,29 +2,35 @@ require 'spec_helper'
...
@@ -2,29 +2,35 @@ require 'spec_helper'
describe
Gitlab
::
Ci
::
Status
::
Pipeline
::
Common
do
describe
Gitlab
::
Ci
::
Status
::
Pipeline
::
Common
do
let
(
:user
)
{
create
(
:user
)
}
let
(
:user
)
{
create
(
:user
)
}
let
(
:project
)
{
create
(
:empty_project
)
}
let
(
:project
)
{
create
(
:empty_project
,
:private
)
}
let
(
:pipeline
)
{
create
(
:ci_pipeline
,
project:
project
)
}
let
(
:pipeline
)
{
create
(
:ci_pipeline
,
project:
project
)
}
subject
do
subject
do
Class
.
new
(
Gitlab
::
Ci
::
Status
::
Core
)
Gitlab
::
Ci
::
Status
::
Core
.
new
(
pipeline
,
user
)
.
new
(
pipeline
,
user
)
.
extend
(
described_class
)
.
extend
(
described_class
)
end
end
before
do
describe
'#has_action?'
do
project
.
team
<<
[
user
,
:developer
]
it
{
is_expected
.
not_to
have_action
}
end
end
it
'does not have action'
do
describe
'#has_details?'
do
expect
(
subject
).
not_to
have_action
context
'when user has access to read pipeline'
do
before
{
project
.
team
<<
[
user
,
:developer
]
}
it
{
is_expected
.
to
have_details
}
end
end
it
'has details'
do
context
'when user does not have access to read pipeline'
do
expect
(
subject
).
to
have_details
it
{
is_expected
.
not_to
have_details
}
end
end
end
describe
'#details_path'
do
it
'links to the pipeline details page'
do
it
'links to the pipeline details page'
do
expect
(
subject
.
details_path
)
expect
(
subject
.
details_path
)
.
to
include
"pipelines/
#{
pipeline
.
id
}
"
.
to
include
"pipelines/
#{
pipeline
.
id
}
"
end
end
end
end
end
This diff is collapsed.
Click to expand it.
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