diff options
author | Fabio Papa <fabtheman@gmail.com> | 2019-07-01 09:17:26 -0700 |
---|---|---|
committer | Fabio Papa <fabtheman@gmail.com> | 2019-07-05 10:04:28 -0700 |
commit | 2b96af35062dcc2492cfad7f6e6f6d6fd8f76ff6 (patch) | |
tree | a777b7b1f02595a61ddd60bd451273a4a8e3bafd | |
parent | 5015e23d6abcf2d3797e7dea76d3d3db9f3d6219 (diff) | |
download | gitlab-ce-2b96af35062dcc2492cfad7f6e6f6d6fd8f76ff6.tar.gz |
Clean up the show_spec examples previously added
-rw-r--r-- | spec/features/groups/show_spec.rb | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/spec/features/groups/show_spec.rb b/spec/features/groups/show_spec.rb index bed998a0859..9cf5e7f9bb6 100644 --- a/spec/features/groups/show_spec.rb +++ b/spec/features/groups/show_spec.rb @@ -78,11 +78,10 @@ describe 'Group show page' do context 'when subgroups are supported', :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 @@ -91,11 +90,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 |