summaryrefslogtreecommitdiff
path: root/spec/models
diff options
context:
space:
mode:
authorSean McGivern <sean@mcgivern.me.uk>2018-07-12 15:39:44 +0000
committerSean McGivern <sean@mcgivern.me.uk>2018-07-12 15:39:44 +0000
commit4e744e18a1a6baffa54d92426c14b09461ed022d (patch)
tree6bd0b8c7554ab1eae439283f97b4066c11994f9c /spec/models
parent5c7e2987ae4042d2e4b869456e3620b9caea381d (diff)
parentef129737235832908e81f58da9133bbd8e9e7963 (diff)
downloadgitlab-ce-4e744e18a1a6baffa54d92426c14b09461ed022d.tar.gz
Merge branch 'issue_47709' into 'master'
Allow to toggle notifications for issues due soon Closes #47709 See merge request gitlab-org/gitlab-ce!20530
Diffstat (limited to 'spec/models')
-rw-r--r--spec/models/notification_setting_spec.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/models/notification_setting_spec.rb b/spec/models/notification_setting_spec.rb
index d7c5f26ab67..77c475b9f52 100644
--- a/spec/models/notification_setting_spec.rb
+++ b/spec/models/notification_setting_spec.rb
@@ -93,4 +93,10 @@ RSpec.describe NotificationSetting do
end
end
end
+
+ context 'email events' do
+ it 'includes EXCLUDED_WATCHER_EVENTS in EMAIL_EVENTS' do
+ expect(described_class::EMAIL_EVENTS).to include(*described_class::EXCLUDED_WATCHER_EVENTS)
+ end
+ end
end