gitlab-org--gitlab-foss/features/steps/profile/active_tab.rb

26 lines
653 B
Ruby
Raw Normal View History

class Spinach::Features::ProfileActiveTab < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedActiveTab
step 'the active main tab should be Home' do
ensure_active_main_tab('Profile')
end
step 'the active main tab should be Account' do
ensure_active_main_tab('Account')
end
step 'the active main tab should be SSH Keys' do
ensure_active_main_tab('SSH Keys')
end
2015-06-05 14:00:21 -04:00
step 'the active main tab should be Preferences' do
ensure_active_main_tab('Preferences')
end
2017-05-16 08:54:57 -04:00
step 'the active main tab should be Authentication log' do
ensure_active_main_tab('Authentication log')
end
end