Methods
Public Instance methods
test_unquote_base64()
     # File lib/action_mailer/vendor/tmail/quoting.rb, line 119
119:     def test_unquote_base64
120:       a ="=?ISO-8859-1?B?WzE2NjQxN10gQmVrcuZmdGVsc2UgZnJhIFJlanNlZmViZXI=?="
121:       b = TMail::Unquoter.unquote_and_convert_to(a, 'utf-8')
122:       assert_equal "[166417] Bekr\303\246ftelse fra Rejsefeber", b
123:     end
test_unquote_quoted_printable()
     # File lib/action_mailer/vendor/tmail/quoting.rb, line 113
113:     def test_unquote_quoted_printable
114:       a ="=?ISO-8859-1?Q?[166417]_Bekr=E6ftelse_fra_Rejsefeber?=" 
115:       b = TMail::Unquoter.unquote_and_convert_to(a, 'utf-8')
116:       assert_equal "[166417] Bekr\303\246ftelse fra Rejsefeber", b
117:     end
test_unquote_without_charset()
     # File lib/action_mailer/vendor/tmail/quoting.rb, line 125
125:     def test_unquote_without_charset
126:       a ="[166417]_Bekr=E6ftelse_fra_Rejsefeber" 
127:       b = TMail::Unquoter.unquote_and_convert_to(a, 'utf-8')
128:       assert_equal "[166417]_Bekr=E6ftelse_fra_Rejsefeber", b
129:     end