fix tabs features

master
Dmitriy Zaporozhets 2013-04-02 11:23:06 +03:00
parent 8465238899
commit d3559e2556
1 changed files with 3 additions and 3 deletions

View File

@ -3,9 +3,9 @@ module SharedActiveTab
def ensure_active_main_tab(content)
if content == "Home"
page.find('ul.main_menu li.active').should have_css('i.icon-home')
page.find('.main-nav li.active').should have_css('i.icon-home')
else
page.find('ul.main_menu li.active').should have_content(content)
page.find('.main-nav li.active').should have_content(content)
end
end
@ -14,7 +14,7 @@ module SharedActiveTab
end
And 'no other main tabs should be active' do
page.should have_selector('ul.main_menu li.active', count: 1)
page.should have_selector('.main-nav li.active', count: 1)
end
And 'no other sub tabs should be active' do