Module:kxu-translit/testcases
Jump to navigation
Jump to search
Documentation for this module may be created at Module:kxu-translit/testcases/doc
-- Unit tests for [[Module:kxu-translit]]. Refresh page to run tests.
local tests = require('Module:UnitTests')
local or_translit = require('Module:kxu-translit')
--TO DO
function tests:do_test_translit(orya, roman, xlit)
self:equals('<span class="Orya" lang="kxu">[[' .. orya .. '#Odia|' .. orya .. ']]</span>', or_translit.tr(orya, 'kxu', 'Orya'), roman)
end
function tests:test_translit_oriya()
self:do_test_translit('ଓଡ଼ିଆ', 'oṛia')
self:do_test_translit('ଓଡ଼ିଶା', 'oṛiśa')
self:do_test_translit('ଚାରି', 'cari')
self:do_test_translit('ଏକ', 'ekô')
self:do_test_translit('ପାଞ୍ଚ', 'pañcô')
end
return tests