debian-mirror-gitlab/features/steps/dashboard/active_tab.rb

22 lines
516 B
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
class DashboardActiveTab < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedActiveTab
Then 'the active main tab should be Home' do
ensure_active_main_tab('Activity')
end
Then 'the active main tab should be Issues' do
ensure_active_main_tab('Issues')
end
Then 'the active main tab should be Merge Requests' do
ensure_active_main_tab('Merge Requests')
end
Then 'the active main tab should be Help' do
ensure_active_main_tab('Help')
end
end