2016-02-26 09:28:08 -05:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2017-04-09 11:11:37 -04:00
|
|
|
describe ApplicationHelper do
|
|
|
|
describe 'active_nav_class' do
|
|
|
|
it 'returns active when on the current page' do
|
|
|
|
allow(helper).to receive(:current_page?).and_return(true)
|
2016-02-26 09:28:08 -05:00
|
|
|
|
2017-04-09 11:11:37 -04:00
|
|
|
result = helper.active_nav_class("/test")
|
|
|
|
expect(result).to eq "active"
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns empty string when not on current page' do
|
|
|
|
allow(helper).to receive(:current_page?).and_return(false)
|
|
|
|
|
|
|
|
result = helper.active_nav_class("/test")
|
|
|
|
expect(result).to eq ""
|
|
|
|
end
|
|
|
|
end
|
2016-02-26 09:28:08 -05:00
|
|
|
end
|