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
7848c4da
Commit
7848c4da
authored
Jul 01, 2019
by
Fabio Papa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up the show_spec examples previously added
parent
42167779
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
18 deletions
+18
-18
spec/features/groups/show_spec.rb
spec/features/groups/show_spec.rb
+18
-18
No files found.
spec/features/groups/show_spec.rb
View file @
7848c4da
...
...
@@ -56,27 +56,28 @@ describe 'Group show page' do
end
context
'subgroup support'
do
let
(
:restricted_group
)
{
create
(
:group
,
subgroup_creation_level:
::
Gitlab
::
Access
::
OWNER_SUBGROUP_ACCESS
)
}
let
(
:relaxed_group
)
{
create
(
:group
,
subgroup_creation_level:
::
Gitlab
::
Access
::
MAINTAINER_SUBGROUP_ACCESS
)
}
let
(
:owner
)
{
create
(
:user
)
}
let
(
:maintainer
)
{
create
(
:user
)
}
before
do
group
.
add_owner
(
owner
)
group
.
add_maintainer
(
maintainer
)
end
context
'for owners'
do
let
(
:path
)
{
group_path
(
restricted_group
)
}
before
do
restricted_group
.
add_owner
(
owner
)
sign_in
(
owner
)
end
context
'when subgroups are supported'
,
:js
,
:nested_groups
do
before
do
allow
(
Group
).
to
receive
(
:supports_nested_objects?
)
{
true
}
visit
path
end
it
'allows creating subgroups'
do
visit
path
expect
(
page
)
.
to
have_css
(
"li[data-text='New subgroup']"
,
visible:
false
)
end
...
...
@@ -85,11 +86,10 @@ describe 'Group show page' do
context
'when subgroups are not supported'
do
before
do
allow
(
Group
).
to
receive
(
:supports_nested_objects?
)
{
false
}
visit
path
end
it
'does not allow creating subgroups'
do
visit
path
expect
(
page
)
.
not_to
have_selector
(
"li[data-text='New subgroup']"
,
visible:
false
)
end
...
...
@@ -107,30 +107,30 @@ describe 'Group show page' do
end
context
'when subgroup_creation_level is set to maintainers'
do
let
(
:group
)
do
create
(
:group
,
subgroup_creation_level:
::
Gitlab
::
Access
::
MAINTAINER_SUBGROUP_ACCESS
)
before
do
relaxed_group
.
add_maintainer
(
maintainer
)
path
=
group_path
(
relaxed_group
)
visit
path
end
it
'allows creating subgroups'
do
visit
path
expect
(
page
)
.
to
have_css
(
"li[data-text='New subgroup']"
,
visible:
false
)
end
end
context
'when subgroup_creation_level is set to owners'
do
let
(
:group
)
do
create
(
:group
,
subgroup_creation_level:
::
Gitlab
::
Access
::
OWNER_SUBGROUP_ACCESS
)
before
do
restricted_group
.
add_maintainer
(
maintainer
)
end
it
'does not allow creating subgroups'
do
path
=
group_path
(
restricted_group
)
visit
path
expect
(
page
)
.
not_to
have_css
(
"li[data-text='New subgroup']"
,
visible:
false
)
.
not_to
have_selector
(
"li[data-text='New subgroup']"
,
visible:
false
)
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