mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
24 lines
528 B
Ruby
24 lines
528 B
Ruby
require 'active_support/test_case'
|
|
|
|
class ActiveSupport::TestCase
|
|
def assert_not(assertion)
|
|
assert !assertion
|
|
end
|
|
|
|
def assert_blank(assertion)
|
|
assert assertion.blank?
|
|
end
|
|
|
|
def assert_not_blank(assertion)
|
|
assert !assertion.blank?
|
|
end
|
|
alias :assert_present :assert_not_blank
|
|
|
|
def assert_email_sent(&block)
|
|
assert_difference('ActionMailer::Base.deliveries.size') { yield }
|
|
end
|
|
|
|
def assert_email_not_sent(&block)
|
|
assert_no_difference('ActionMailer::Base.deliveries.size') { yield }
|
|
end
|
|
end
|