Module:Rohg-translit/testcases

From Linguifex
Revision as of 12:45, 21 April 2026 by Sware (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Documentation for this module may be created at Module:Rohg-translit/testcases/doc

-- Unit tests for [[Module:Rohg-translit]]. Refresh page to run tests.
local tests = require('Module:UnitTests')
local Rohg_translit = require('Module:Rohg-translit')

function tests:do_test_translit(rohg, roman, comment)
	self:equals('<span class="Rohg" lang="rhg">[[' .. mw.ustring.gsub(rohg, "%+", "") .. '#Rohingya|' .. mw.ustring.gsub(rohg, "%+", "") .. ']]</span>', Rohg_translit.tr(rohg, 'rhg', 'Rohg'), roman, { comment = comment })
end

function tests:test_translit_rohingya()
    self:do_test_translit('𐴉𐴟𐴌𐴝𐴕', 'furan')
    self:do_test_translit('𐴁𐴡𐴒𐴝', 'boga')
    self:do_test_translit('𐴇𐴞𐴥𐴘𐴝𐴓', 'híiyal')
    self:do_test_translit('𐴀𐴡𐴥𐴘𐴧𐴠', 'óoyye')
end
 
return tests