#!/usr/bin/ruby -w $:.unshift File.join(File.dirname(__FILE__), '..', 'lib') require 'test/unit' require 'feed2imap/textconverters' class TextConvertersText2HTMLTest < Test::Unit::TestCase def test_detecthtml assert('

aaa

'.html?) assert('aaaaa

a

aa

'.html?) assert('aaaaa
aa'.html?) assert(!'aaaaaaa'.html?) assert('aaaaa
aa'.html?) assert('aaaaa
aa'.html?) assert(!'aaa bbb ccc > ddd'.html?) end def test_text2html output = "

Les brouillons pour la spécification OpenAL 1.1 sont en ligne....

L'annonce et le thread sur la mailing list : http://opensource.creative.com/pipermail/openal-devel/2005-February(...)

Ou télécharger (en pdf ou sxw ) http://openal.org/documentation.html(...)

" input = <<-EOF Les brouillons pour la spécification OpenAL 1.1 sont en ligne.... L'annonce et le thread sur la mailing list : http://opensource.creative.com/pipermail/openal-devel/2005-February(...) Ou télécharger (en pdf ou sxw ) http://openal.org/documentation.html(...) EOF assert_equal(output, input.text2html) end end