debian-mirror-gitlab/spec/support/email_helpers.rb
2016-06-02 11:05:42 +05:30

14 lines
289 B
Ruby

module EmailHelpers
def sent_to_user?(user)
ActionMailer::Base.deliveries.map(&:to).flatten.count(user.email) == 1
end
def should_email(user)
expect(sent_to_user?(user)).to be_truthy
end
def should_not_email(user)
expect(sent_to_user?(user)).to be_falsey
end
end