Methods
Public Instance methods
[ show source ]
# File test/mail_service_test.rb, line 798
798: def test_attr
799: expected = "#{File.dirname(__FILE__)}/fixtures/path.with.dots"
800: assert_equal expected, FunkyPathMailer.template_root
801:
802: sub = Class.new(FunkyPathMailer)
803: sub.template_root = 'test/path'
804:
805: assert_equal 'test/path', sub.template_root
806: assert_equal expected, FunkyPathMailer.template_root
807: end