Commit d26d2efc authored by Denys Mishunov's avatar Denys Mishunov

Updated the spec

As per review
parent f1dea8ae
...@@ -157,12 +157,10 @@ RSpec.describe Sidebars::Menu do ...@@ -157,12 +157,10 @@ RSpec.describe Sidebars::Menu do
context 'when menu has renderable items' do context 'when menu has renderable items' do
before do before do
allow(menu).to receive(:has_renderable_items?).and_return(true) menu.add_item(Sidebars::MenuItem.new(title: 'foo1', link: 'foo1', active_routes: { path: 'bar' }))
end end
it 'contains the special class' do it 'contains the special class' do
menu.add_item(Sidebars::MenuItem.new(title: 'foo1', link: 'foo1', active_routes: { path: 'bar' }))
expect(menu.container_html_options[:class]).to eq 'has-sub-items' expect(menu.container_html_options[:class]).to eq 'has-sub-items'
end end
...@@ -176,10 +174,6 @@ RSpec.describe Sidebars::Menu do ...@@ -176,10 +174,6 @@ RSpec.describe Sidebars::Menu do
end end
context 'when menu does not have renderable items' do context 'when menu does not have renderable items' do
before do
allow(menu).to receive(:has_renderable_items?).and_return(false)
end
it 'does not contain the special class' do it 'does not contain the special class' do
expect(menu.container_html_options[:class]).to be_nil expect(menu.container_html_options[:class]).to be_nil
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