Module:or-translit/testcases

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

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

All tests passed. (refresh)

TextExpectedActualDiffers at
test_translit_oriya:
Passedଓଡ଼ିଆoṛiaoṛia
Passedଓଡ଼ିଶାoṛiśaoṛiśa
Passedଚାରିcaricari
Passedଏକekôekô
Passedପାଞ୍ଚpañcôpañcô

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

--TO DO
function tests:do_test_translit(orya, roman, xlit)
	self:equals('<span class="Orya" lang="or">[[' .. orya .. '#Odia|' .. orya .. ']]</span>', or_translit.tr(orya, 'or', 'Orya'), roman)
end

function tests:test_translit_oriya()
	self:do_test_translit('ଓଡ଼ିଆ', 'oṛia')
	self:do_test_translit('ଓଡ଼ିଶା', 'oṛiśa')
	self:do_test_translit('ଚାରି', 'cari')
	self:do_test_translit('ଏକ', 'ekô')
	self:do_test_translit('ପାଞ୍ଚ', 'pañcô')
	
end
 
return tests