Module:gon-Gong-translit/testcases

Hello, you have come here looking for the meaning of the word Module:gon-Gong-translit/testcases. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:gon-Gong-translit/testcases, but we will also tell you about its etymology, its characteristics and you will know how to say Module:gon-Gong-translit/testcases in singular and plural. Everything you need to know about the word Module:gon-Gong-translit/testcases you have here. The definition of the word Module:gon-Gong-translit/testcases will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:gon-Gong-translit/testcases, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.

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

All tests passed. (refresh)

TextExpectedActualDiffers atComments
test_translit_gondi:
Passed𑵭𑶂𑶌vaḍīvaḍīṛ represented by 𑶂 <ḍ>

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

--TO DO
function tests:do_test_translit(gong, roman, comment)
	self:equals(
		'<span class="Gong" lang="gon">]</span>',
		gon_translit.tr(gong, 'gon', 'gong'),
		roman,
		{ comment = comment })
end

function tests:test_translit_gondi() 
	local examples = {
		{ '𑵭𑶂𑶌', 'vaḍī', 'ṛ represented by 𑶂 <ḍ>'},
	}
	
	self:iterate(examples, 'do_test_translit')

end
 
return tests