blob: d7c7053edbdc414de991558be6ed2e5d3a4be2f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
module SharedActiveTab
include Spinach::DSL
def ensure_active_main_tab(content)
find('.sidebar-wrapper li.active').should have_content(content)
end
def ensure_active_sub_tab(content)
find('div.content ul.nav-tabs li.active').should have_content(content)
end
def ensure_active_sub_nav(content)
find('div.content ul.nav-stacked-menu li.active').should have_content(content)
end
step 'no other main tabs should be active' do
page.should have_selector('.sidebar-wrapper li.active', count: 1)
end
step 'no other sub tabs should be active' do
page.should have_selector('div.content ul.nav-tabs li.active', count: 1)
end
step 'no other sub navs should be active' do
page.should have_selector('div.content ul.nav-stacked-menu li.active', count: 1)
end
step 'the active main tab should be Home' do
ensure_active_main_tab('Activity')
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')
end
end
|