Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabio Papa <fabtheman@gmail.com>2019-07-01 00:40:23 +0300
committerFabio Papa <fabtheman@gmail.com>2019-07-19 22:06:57 +0300
commit4b572f807c0f51ad47ad907d0ac471c7b81ac8be (patch)
tree29c1b2762e2afb1444b4918c15138d9eeeee5628 /spec/controllers/admin/groups_controller_spec.rb
parentbcc970f6f5ec3b48db2417c23bc81d4240a0c47d (diff)
Make subgroup_creation_level default to maintainer at SQL level
- Migration updates existing groups to "owner", then sets default to "maintainer" so that new groups will default to that - Update spec examples
Diffstat (limited to 'spec/controllers/admin/groups_controller_spec.rb')
-rw-r--r--spec/controllers/admin/groups_controller_spec.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/spec/controllers/admin/groups_controller_spec.rb b/spec/controllers/admin/groups_controller_spec.rb
index 72f389513f8..398f587bafe 100644
--- a/spec/controllers/admin/groups_controller_spec.rb
+++ b/spec/controllers/admin/groups_controller_spec.rb
@@ -70,14 +70,13 @@ describe Admin::GroupsController do
end
it 'updates the subgroup_creation_level successfully' do
- MAINTAINER = ::Gitlab::Access::MAINTAINER_SUBGROUP_ACCESS
+ OWNER = ::Gitlab::Access::OWNER_SUBGROUP_ACCESS
expect do
post :update,
params: { id: group.to_param,
- group: { subgroup_creation_level: MAINTAINER } }
- end.to change { group.reload.subgroup_creation_level }
- .to(MAINTAINER)
+ group: { subgroup_creation_level: OWNER } }
+ end.to change { group.reload.subgroup_creation_level }.to(OWNER)
end
end
end