more tweaks, delete BTM

This commit is contained in:
Adrian Mariano
2021-11-10 23:12:14 -05:00
parent 1925bad599
commit d6d086430c
3 changed files with 11 additions and 22 deletions

View File

@@ -46,15 +46,6 @@ module test_ends_with() {
test_ends_with();
module test_escape_html() {
assert(escape_html("ABCDEFGHIJKLMNOPQRSTUVWXYZ") == "ABCDEFGHIJKLMNOPQRSTUVWXYZ");
assert(escape_html("abcdefghijklmnopqrstuvwxyz") == "abcdefghijklmnopqrstuvwxyz");
assert(escape_html("1234567890!@#$%^&*()-=_+") == "1234567890!@#$%^&*()-=_+");
assert(escape_html("[]\\{}|;':\",./<>?`~") == "[]\\{}|;':&quot;,./&lt;&gt;?`~");
}
test_escape_html();
module test_fmt_int() {
assert(fmt_int(0,6) == "000000");
assert(fmt_int(3,6) == "000003");