Commit d287a9b7 authored by Fabio Papa's avatar Fabio Papa

Apply recomended changes from merge coach

parent 3f92f3fa
...@@ -78,10 +78,11 @@ describe 'Group show page' do ...@@ -78,10 +78,11 @@ describe 'Group show page' do
context 'when subgroups are supported', :nested_groups do context 'when subgroups are supported', :nested_groups do
before do before do
allow(Group).to receive(:supports_nested_objects?) { true } allow(Group).to receive(:supports_nested_objects?) { true }
visit path
end end
it 'allows creating subgroups' do it 'allows creating subgroups' do
visit path
expect(page) expect(page)
.to have_css("li[data-text='New subgroup']", visible: false) .to have_css("li[data-text='New subgroup']", visible: false)
end end
...@@ -90,10 +91,11 @@ describe 'Group show page' do ...@@ -90,10 +91,11 @@ describe 'Group show page' do
context 'when subgroups are not supported' do context 'when subgroups are not supported' do
before do before do
allow(Group).to receive(:supports_nested_objects?) { false } allow(Group).to receive(:supports_nested_objects?) { false }
visit path
end end
it 'does not allow creating subgroups' do it 'does not allow creating subgroups' do
visit path
expect(page) expect(page)
.not_to have_selector("li[data-text='New subgroup']", visible: false) .not_to have_selector("li[data-text='New subgroup']", visible: false)
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment