summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/mailers/notify_shared_examples.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/shared_examples/mailers/notify_shared_examples.rb')
-rw-r--r--spec/support/shared_examples/mailers/notify_shared_examples.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/support/shared_examples/mailers/notify_shared_examples.rb b/spec/support/shared_examples/mailers/notify_shared_examples.rb
index 7ce7b2161f6..0143bf693c7 100644
--- a/spec/support/shared_examples/mailers/notify_shared_examples.rb
+++ b/spec/support/shared_examples/mailers/notify_shared_examples.rb
@@ -273,3 +273,12 @@ RSpec.shared_examples 'no email is sent' do
expect(subject.message).to be_a_kind_of(ActionMailer::Base::NullMail)
end
end
+
+RSpec.shared_examples 'does not render a manage notifications link' do
+ it do
+ aggregate_failures do
+ expect(subject).not_to have_body_text("Manage all notifications")
+ expect(subject).not_to have_body_text(profile_notifications_url)
+ end
+ end
+end