diff options
author | Fabio Papa <fabtheman@gmail.com> | 2019-06-28 14:06:50 -0700 |
---|---|---|
committer | Fabio Papa <fabtheman@gmail.com> | 2019-07-01 14:10:52 -0700 |
commit | 23c549d4a38efc15a54ff7cc57e38a9aefb632f8 (patch) | |
tree | b62559a4691a467da5a6492663fd094fa7d2c181 | |
parent | 9470dc25d8639499dafbbd366eda00b359cbd417 (diff) | |
download | gitlab-ce-23c549d4a38efc15a54ff7cc57e38a9aefb632f8.tar.gz |
Remove an example that is no longer necessary
-rw-r--r-- | spec/models/group_spec.rb | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/spec/models/group_spec.rb b/spec/models/group_spec.rb index 6627177ad61..470ce65707d 100644 --- a/spec/models/group_spec.rb +++ b/spec/models/group_spec.rb @@ -994,13 +994,4 @@ describe Group do expect(group.project_creation_level).to eq(Gitlab::CurrentSettings.default_project_creation) end end - - describe 'subgroup_creation_level' do - it 'outputs the default one if it is nil' do - group = create(:group, subgroup_creation_level: nil) - - expect(group.subgroup_creation_level) - .to eq(::Gitlab::Access::MAINTAINER_SUBGROUP_ACCESS) - end - end end |