debian-mirror-gitlab/spec/features/profiles/user_changes_notified_of_own_activity_spec.rb

35 lines
1 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe 'Profile > Notifications > User changes notified_of_own_activity setting', :js do
2017-08-17 22:00:37 +05:30
let(:user) { create(:user) }
before do
2017-09-10 17:25:29 +05:30
sign_in(user)
2017-08-17 22:00:37 +05:30
end
2021-02-22 17:27:13 +05:30
it 'user opts into receiving notifications about their own activity' do
2017-08-17 22:00:37 +05:30
visit profile_notifications_path
expect(page).not_to have_checked_field('user[notified_of_own_activity]')
check 'user[notified_of_own_activity]'
expect(page).to have_content('Notification settings saved')
expect(page).to have_checked_field('user[notified_of_own_activity]')
end
2021-02-22 17:27:13 +05:30
it 'user opts out of receiving notifications about their own activity' do
2017-08-17 22:00:37 +05:30
user.update!(notified_of_own_activity: true)
visit profile_notifications_path
expect(page).to have_checked_field('user[notified_of_own_activity]')
uncheck 'user[notified_of_own_activity]'
expect(page).to have_content('Notification settings saved')
expect(page).not_to have_checked_field('user[notified_of_own_activity]')
end
end