This is the unit-testing module for Module:lep-translit.
All tests passed. (refresh)
Text | Expected | Actual | Differs at | |
---|---|---|---|---|
ᰕᰧ | mi | mi | ||
ᰈᰬᰲ | jer | jer | ||
ᰎᰪᰰᰈᰬᰵ | punjeng | punjeng |
-- Unit tests for ]. Refresh page to run tests.
local tests = require('Module:UnitTests')
local lep_translit = require('Module:lep-translit')
function tests:do_test_translit(lepc, roman, xlit)
self:equals('<span class="Lepc" lang="lep">]</span>', lep_translit.tr(lepc, 'lep', 'Lepc'), roman)
end
function tests:test_translit_lepcha()
self:do_test_translit('ᰕᰧ', 'mi')
self:do_test_translit('ᰈᰬᰲ', 'jer')
self:do_test_translit('ᰎᰪᰰᰈᰬᰵ', 'punjeng')
end
return tests