2014-09-22 10:30:25 -04:00
|
|
|
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
|
2015-06-12 00:44:13 -04:00
|
|
|
expect(page).to have_content "Notifications"
|
2013-06-26 13:54:51 -04:00
|
|
|
end
|
2016-03-30 04:32:19 -04:00
|
|
|
|
|
|
|
step 'I select Mention setting from dropdown' do
|
2016-06-17 11:38:49 -04:00
|
|
|
first(:link, "On mention").trigger('click')
|
2016-03-30 04:32:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
step 'I should see Notification saved message' do
|
2016-06-21 04:58:03 -04:00
|
|
|
expect(page).to have_content 'On mention'
|
2016-03-30 04:32:19 -04:00
|
|
|
end
|
2013-06-26 13:54:51 -04:00
|
|
|
end
|