summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/views/plain_text_email.rb
blob: 23f9262b446091a0b78fb32e5fd97ea9a984aeb1 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

RSpec.shared_examples 'renders plain text email correctly' do
  it 'renders the email without HTML links' do
    render

    expect(rendered).to have_no_selector('a')
  end
end