Module:lep-translit/testcases

From Wiktionary, the free dictionary
Jump to navigation Jump to search

This is the unit-testing module for Module:lep-translit.

All tests passed. (refresh)

TextExpectedActualDiffers at
test_translit_lepcha:
Passedᰕᰧmimi
Passedᰈᰬᰲjerjer
Passedᰎᰪᰰᰈᰬᰵpunjengpunjeng

-- Unit tests for [[Module:lep-translit]]. 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">[[' .. mw.ustring.gsub(lepc, "%+", "") .. '#Lepcha|' .. mw.ustring.gsub(lepc, "%+", "") .. ']]</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