Blame test/stufftest.lua

Packit b53373
local mime = require("mime")
Packit b53373
Packit b53373
function test_dot(original, right)
Packit b53373
    local result, n = mime.dot(2, original)
Packit b53373
    assert(result == right, "->" .. result .. "<-")
Packit b53373
    print("ok")
Packit b53373
end
Packit b53373
Packit b53373
function test_stuff(original, right)
Packit b53373
    local result, n = mime.dot(2, original)
Packit b53373
    assert(result == right, "->" .. result .. "<-")
Packit b53373
    print("ok")
Packit b53373
end
Packit b53373
Packit b53373
test_dot("abc", "abc")
Packit b53373
test_dot("", "")
Packit b53373
test_dot("\r\n", "\r\n")
Packit b53373
test_dot("\r\n.", "\r\n..")
Packit b53373
test_dot(".\r\n.", "..\r\n..")
Packit b53373
test_dot(".\r\n.", "..\r\n..")
Packit b53373
test_dot("abcd.\r\n.", "abcd.\r\n..")