summaryrefslogtreecommitdiff
path: root/features/steps/profile/notifications.rb
blob: 447ea6d9d10fd5917772b81bee7f5d1bc6b5e986 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class Spinach::Features::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
    expect(page).to have_content "Notifications"
  end
end