Sha256: 3f48c5b62dd54f1e087414fcdbb784a90e9cafca4930874fa8e2135c2bfbb97c
Contents?: true
Size: 1.11 KB
Versions: 100
Compression:
Stored size: 1.11 KB
Contents
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 <font color=\"red\">red</font>, this is <strong>bold</strong><br />\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 <font color=\"red\">red</font>, this is <strong>bold</strong><br />\n" + "this is a line without any ansi code<br />\n" + "this is <font color=\"red\">red</font>, this is <strong>bold</strong><br />\n" out.assert == ANSI::BBCode.ansi_to_html(str) end end end
Version data entries
100 entries across 58 versions & 17 rubygems