Welcome to mirror list, hosted at ThFree Co, Russian Federation.

notifications.rb « profile « steps « features - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 13e93618eb748d8f11c83cf1d8aa83f5991bba0d (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
    page.should have_content "Notifications Settings"
  end
end