2012-09-26 02:11:57 +02:00
|
|
|
class ProfileActiveTab < Spinach::FeatureSteps
|
|
|
|
include SharedAuthentication
|
|
|
|
include SharedPaths
|
|
|
|
include SharedActiveTab
|
|
|
|
|
|
|
|
Then 'the active main tab should be Home' do
|
2013-01-31 11:08:56 +01:00
|
|
|
ensure_active_main_tab('Home')
|
2012-09-26 02:11:57 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
Then 'the active main tab should be Account' do
|
|
|
|
ensure_active_main_tab('Account')
|
|
|
|
end
|
|
|
|
|
|
|
|
Then 'the active main tab should be SSH Keys' do
|
|
|
|
ensure_active_main_tab('SSH Keys')
|
|
|
|
end
|
|
|
|
|
|
|
|
Then 'the active main tab should be Design' do
|
|
|
|
ensure_active_main_tab('Design')
|
|
|
|
end
|
|
|
|
|
|
|
|
Then 'the active main tab should be History' do
|
|
|
|
ensure_active_main_tab('History')
|
|
|
|
end
|
|
|
|
end
|