20 lines
531 B
Ruby
20 lines
531 B
Ruby
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
|
|
|
|
step 'I select Mention setting from dropdown' do
|
|
first(:link, "On mention").click
|
|
end
|
|
|
|
step 'I should see Notification saved message' do
|
|
expect(page).to have_content 'On mention'
|
|
end
|
|
end
|