Module:gon-Gonm-translit/testcases

Revision as of 01:52, 10 July 2023 by wikt>Kutchkutch
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

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

--TO DO
function tests:do_test_translit(gonm, roman, comment)
	self:equals(
		'<span class="Gonm" lang="gon">[[' .. gonm .. '#Gondi|' .. gonm .. ']]</span>',
		gon_translit.tr(gonm, 'gon', 'gonm'),
		roman,
		{ comment = comment })
end

function tests:test_translit_gondi() 
	local examples = {
		{ '𑴦𑴶', 'r̥', 'independent <r̥> represented by independent <r> + dependent <r̥>'},
		{ '𑴨𑴘𑵂𑴳', 'vaṛī', '<ṛ> represented as 𑴘𑵂'},
		{ '𑴀𑴎𑵅𑴎', 'agga', 'virama'},
		{ '𑴌𑴱𑴖𑵄', 'kāṭ', 'word-final halanta'},
		{ '𑴌𑴵𑴥𑵄𑴫𑴱', 'kūysā', 'word-medial halanta'},
		{ '𑴀𑵆𑴝𑴽', 'ardo', 'repha'},
		{ '𑴑𑴱𑴠𑵇𑴱', 'cāprā', 'ra-kāra'},
		{ '𑴆𑵃', 'ĕ', '<ऍ> ĕ independent'},
		{ '𑴁𑵃', 'ŏ', '<ऑ> ŏ independent'},
		{ '𑴌𑵃', 'kĕ', '<ऍ> ĕ dependent'},
		{ '𑴌𑴱𑵃', 'kŏ', '<ऑ> ŏ dependent'},
	}
	
	self:iterate(examples, 'do_test_translit')

end
 
return tests