This is the unit-testing module for Module:brx-translit.
All tests passed. (refresh)
Text | Expected | Actual | Differs at | Comments | |
---|---|---|---|---|---|
![]() | खावसे | kaose | kaose | ||
![]() | अखाफोर | okafwr | okafwr | ||
![]() | अख्रां | okraŋ | okraŋ | ||
![]() | संख्रि | soŋkri | soŋkri | ||
![]() | दावदै | daodwi | daodwi | ||
![]() | बिसोरनि | biswrni | biswrni | ||
![]() | हामजायो | hamzayw | hamzayw |
-- Unit tests for ]. Refresh page to run tests.
local tests = require('Module:UnitTests')
local brx_translit = require('Module:brx-translit')
function tests:do_test_translit(deva, roman, comment)
self:equals('<span class="Deva" lang="brx">]</span>', brx_translit.tr(deva, 'brx', 'Deva'), roman, { comment = comment })
end
function tests:test_translit_bodo()
self:do_test_translit('खावसे', 'kaose')
self:do_test_translit('अखाफोर', 'okafwr')
self:do_test_translit('अख्रां', 'okraŋ')
self:do_test_translit('संख्रि', 'soŋkri')
self:do_test_translit('दावदै', 'daodwi')
self:do_test_translit('बिसोरनि', 'biswrni')
self:do_test_translit('हामजायो', 'hamzayw')
end
return tests