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
Jérome Perrin
gitlab-ce
Commits
32ab86d4
Commit
32ab86d4
authored
Jan 17, 2017
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add specs for a new external build detailed status
parent
b222f6d5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
4 deletions
+22
-4
spec/models/generic_commit_status_spec.rb
spec/models/generic_commit_status_spec.rb
+22
-4
No files found.
spec/models/generic_commit_status_spec.rb
View file @
32ab86d4
require
'spec_helper'
describe
GenericCommitStatus
,
models:
true
do
let
(
:pipeline
)
{
create
(
:ci_pipeline
)
}
let
(
:project
)
{
create
(
:empty_project
)
}
let
(
:pipeline
)
{
create
(
:ci_pipeline
,
project:
project
)
}
let
(
:external_url
)
{
'http://example.gitlab.com/status'
}
let
(
:generic_commit_status
)
do
create
(
:generic_commit_status
,
pipeline:
pipeline
)
create
(
:generic_commit_status
,
pipeline:
pipeline
,
target_url:
external_url
)
end
describe
'#context'
do
...
...
@@ -22,10 +25,25 @@ describe GenericCommitStatus, models: true do
describe
'#detailed_status'
do
let
(
:user
)
{
create
(
:user
)
}
let
(
:status
)
{
generic_commit_status
.
detailed_status
(
user
)
}
it
'returns detailed status object'
do
expect
(
generic_commit_status
.
detailed_status
(
user
))
.
to
be_a
Gitlab
::
Ci
::
Status
::
Success
expect
(
status
).
to
be_a
Gitlab
::
Ci
::
Status
::
Success
end
context
'when user has ability to see datails'
do
before
{
project
.
team
<<
[
user
,
:developer
]
}
it
'details path points to an external URL'
do
expect
(
status
).
to
have_details
expect
(
status
.
details_path
).
to
eq
external_url
end
end
context
'when user should not see details'
do
it
'does not have details'
do
expect
(
status
).
not_to
have_details
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