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

13 lines
336 B
Ruby
Raw Normal View History

class Spinach::Features::ProfileNotifications < Spinach::FeatureSteps
2013-06-26 13:54:51 -04:00
include SharedAuthentication
include SharedProject
step 'I visit profile notifications page' do
visit profile_notifications_path
end
step 'I should see global notifications settings' do
2013-07-31 13:45:25 -04:00
page.should have_content "Notifications settings"
2013-06-26 13:54:51 -04:00
end
end