2015-10-11 05:41:23 -04:00
|
|
|
require 'rails_helper'
|
2013-06-21 16:31:40 -04:00
|
|
|
|
|
|
|
describe TopMenuItem do
|
2017-07-07 00:18:53 -04:00
|
|
|
before do
|
|
|
|
SiteSetting.top_menu = 'one,-nope|two|three,-not|four,ignored|latest|category/xyz'
|
|
|
|
end
|
|
|
|
|
2013-06-21 16:31:40 -04:00
|
|
|
let(:items) { SiteSetting.top_menu_items }
|
|
|
|
|
|
|
|
it 'has name' do
|
|
|
|
expect(items[0].name).to eq('one')
|
|
|
|
expect(items[1].name).to eq('two')
|
|
|
|
expect(items[2].name).to eq('three')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has a filter' do
|
|
|
|
expect(items[0].filter).to eq('nope')
|
2014-09-25 11:44:48 -04:00
|
|
|
expect(items[0].has_filter?).to be_truthy
|
2013-06-21 16:31:40 -04:00
|
|
|
expect(items[2].filter).to eq('not')
|
2014-09-25 11:44:48 -04:00
|
|
|
expect(items[2].has_filter?).to be_truthy
|
2013-06-21 16:31:40 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not have a filter' do
|
|
|
|
expect(items[1].filter).to be_nil
|
2014-09-25 11:44:48 -04:00
|
|
|
expect(items[1].has_filter?).to be_falsey
|
2013-06-21 16:31:40 -04:00
|
|
|
expect(items[3].filter).to be_nil
|
2014-09-25 11:44:48 -04:00
|
|
|
expect(items[3].has_filter?).to be_falsey
|
2013-06-21 16:31:40 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "has a specific category" do
|
2014-09-25 11:44:48 -04:00
|
|
|
expect(items.first.has_specific_category?).to be_falsey
|
|
|
|
expect(items.last.has_specific_category?).to be_truthy
|
2013-06-21 16:31:40 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "does not have a specific category" do
|
|
|
|
expect(items.first.specific_category).to be_nil
|
|
|
|
expect(items.last.specific_category).to eq('xyz')
|
|
|
|
end
|
|
|
|
|
2014-01-31 08:36:00 -05:00
|
|
|
end
|