Methods
Public Instance methods
test_attr()
     # File test/mail_service_test.rb, line 827
827:   def test_attr
828:     expected = "#{File.dirname(__FILE__)}/fixtures/path.with.dots"
829:     assert_equal expected, FunkyPathMailer.template_root
830: 
831:     sub = Class.new(FunkyPathMailer)
832:     sub.template_root = 'test/path'
833: 
834:     assert_equal 'test/path', sub.template_root
835:     assert_equal expected, FunkyPathMailer.template_root
836:   end