mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
29 lines
650 B
Ruby
29 lines
650 B
Ruby
|
require 'abstract_unit'
|
||
|
|
||
|
class TestTestMailer < ActionMailer::Base
|
||
|
end
|
||
|
|
||
|
class CrazyNameMailerTest < ActionMailer::TestCase
|
||
|
tests TestTestMailer
|
||
|
|
||
|
def test_set_mailer_class_manual
|
||
|
assert_equal TestTestMailer, self.class.mailer_class
|
||
|
end
|
||
|
end
|
||
|
|
||
|
class CrazySymbolNameMailerTest < ActionMailer::TestCase
|
||
|
tests :test_test_mailer
|
||
|
|
||
|
def test_set_mailer_class_manual_using_symbol
|
||
|
assert_equal TestTestMailer, self.class.mailer_class
|
||
|
end
|
||
|
end
|
||
|
|
||
|
class CrazyStringNameMailerTest < ActionMailer::TestCase
|
||
|
tests 'test_test_mailer'
|
||
|
|
||
|
def test_set_mailer_class_manual_using_string
|
||
|
assert_equal TestTestMailer, self.class.mailer_class
|
||
|
end
|
||
|
end
|