require 'test_helper'
require 'ansi/bbcode'
testcase ANSI::BBCode do
class_method :bbcode_to_ansi do
test do
str = "this is [COLOR=red]red[/COLOR], this is [B]bold[/B]"
out = "this is \e[0;31mred\e[0m, this is \e[1mbold\e[0m\n"
out.assert == ANSI::BBCode.bbcode_to_ansi(str)
end
end
class_method :bbcode_to_html do
test do
str = "this is [COLOR=red]red[/COLOR], this is [B]bold[/B]"
out = "this is red, this is bold
\n"
out.assert == ANSI::BBCode.bbcode_to_html(str)
end
end
class_method :ansi_to_html do
test do
str = "this is \e[0;31mred\e[0m, this is \e[1mbold\e[0m\n" +
"this is a line without any ansi code\n" +
"this is \e[0;31mred\e[0m, this is \e[1mbold\e[0m\n"
out = "this is red, this is bold
\n" +
"this is a line without any ansi code
\n" +
"this is red, this is bold
\n"
out.assert == ANSI::BBCode.ansi_to_html(str)
end
end
end