gitlab-org--gitlab-foss/features/steps/profile/profile_notifications.rb
2013-06-26 20:54:51 +03:00

13 lines
370 B
Ruby

class ProfileNotifications < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
step 'I visit profile notifications page' do
visit profile_notifications_path
end
step 'I should see global notifications settings' do
page.should have_content "Setup your notification level"
page.should have_content "Global setting"
end
end