-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtabs_spec.rb
88 lines (71 loc) · 2.44 KB
/
tabs_spec.rb
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
describe "Navigation tabs", type: :feature, js: true do
describe "has tabs" do
before(:each) do
# Navigate to home page before each test
visit '/'
# Find all tabs
@tabs = all('.mdl-layout__tab-bar > a');
end
it "has 6 total tabs" do
expect(@tabs.length).to eq(6)
end
it "renders the tabs" do
expect(@tabs[0].text).to eq('HOME')
expect(@tabs[1].text).to eq('ANNOUNCEMENTS')
expect(@tabs[2].text).to eq('EVENTS')
expect(@tabs[3].text).to eq('ABOUT')
expect(@tabs[4].text).to eq('GET INVOLVED')
expect(@tabs[5].text).to eq('CAMPUSGROUPS')
end
end
context "responds to click" do
before(:each) do
# Navigate to home page before each test
visit '/'
# Find all tabs
@tabs = all('.mdl-layout__tab-bar > a');
end
it "redirects to / after clicking Home tab" do
@tabs[0].click
expect(page).to have_current_path('/')
end
it "redirects to /announcements/ after clicking Announcements tab" do
@tabs[1].click
expect(page).to have_current_path('/announcements/')
end
it "redirects to /events/ after clicking Events tab" do
@tabs[2].click
expect(page).to have_current_path('/events/')
end
it "redirects to /about/ after clicking About tab" do
@tabs[3].click
expect(page).to have_current_path('/about/')
end
it "redirects to /get-involved.html after clicking Get Involved tab" do
@tabs[4].click
expect(page).to have_current_path('/get-involved/')
end
end
describe "indicates active tab" do
it "Home tab is active on / route" do
visit '/'
expect(find('.mdl-layout__tab.is-active').text).to eq('HOME')
end
it "Announcements tab is active on /announcements/ route" do
visit '/announcements/'
expect(find('.mdl-layout__tab.is-active').text).to eq('ANNOUNCEMENTS')
end
it "Events tab is active on /events/ route" do
visit '/events/'
expect(find('.mdl-layout__tab.is-active').text).to eq('EVENTS')
end
it "About tab is active on /about.html route" do
visit '/about.html'
expect(find('.mdl-layout__tab.is-active').text).to eq('ABOUT')
end
it "Get Involved tab is active on /get-involved.html route" do
visit '/get-involved.html'
expect(find('.mdl-layout__tab.is-active').text).to eq('GET INVOLVED')
end
end
end