2014-09-02 18:07:02 +05:30
|
|
|
module SharedActiveTab
|
|
|
|
include Spinach::DSL
|
|
|
|
|
|
|
|
def ensure_active_main_tab(content)
|
2015-09-11 14:41:01 +05:30
|
|
|
expect(find('.nav-sidebar > li.active')).to have_content(content)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def ensure_active_sub_tab(content)
|
2016-01-19 16:12:03 +05:30
|
|
|
expect(find('div.content ul.nav-links li.active')).to have_content(content)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def ensure_active_sub_nav(content)
|
2015-09-11 14:41:01 +05:30
|
|
|
expect(find('.sidebar-subnav > li.active')).to have_content(content)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
step 'no other main tabs should be active' do
|
2015-09-11 14:41:01 +05:30
|
|
|
expect(page).to have_selector('.nav-sidebar > li.active', count: 1)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
step 'no other sub tabs should be active' do
|
2016-01-19 16:12:03 +05:30
|
|
|
expect(page).to have_selector('div.content ul.nav-links li.active', count: 1)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
step 'no other sub navs should be active' do
|
2015-09-11 14:41:01 +05:30
|
|
|
expect(page).to have_selector('.sidebar-subnav > li.active', count: 1)
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
step 'the active main tab should be Home' do
|
2015-09-25 12:07:36 +05:30
|
|
|
ensure_active_main_tab('Projects')
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
step 'the active main tab should be Projects' do
|
|
|
|
ensure_active_main_tab('Projects')
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'the active main tab should be Issues' do
|
|
|
|
ensure_active_main_tab('Issues')
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'the active main tab should be Merge Requests' do
|
|
|
|
ensure_active_main_tab('Merge Requests')
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'the active main tab should be Help' do
|
|
|
|
ensure_active_main_tab('Help')
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|