summaryrefslogtreecommitdiff
path: root/spec/mailers/emails/admin_notification_spec.rb
blob: 90381eb8ffdafe378c36ef852685ff6e00a16a00 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Emails::AdminNotification do
  it 'adds email methods to Notify' do
    subject.instance_methods.each do |email_method|
      expect(Notify).to be_respond_to(email_method)
    end
  end
end