Methods
Public Instance methods
[ show source ]
# File test/mail_service_test.rb, line 811
811: def test_attr
812: expected = "#{File.dirname(__FILE__)}/fixtures/path.with.dots"
813: assert_equal expected, FunkyPathMailer.template_root
814:
815: sub = Class.new(FunkyPathMailer)
816: sub.template_root = 'test/path'
817:
818: assert_equal 'test/path', sub.template_root
819: assert_equal expected, FunkyPathMailer.template_root
820: end