Module:eo-spel/testcases

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

All tests passed. (refresh)

TextExpectedActual
test_spel:
Passedehxosxangxo cxiujxauxdeeĥoŝanĝo ĉiuĵaŭdeeĥoŝanĝo ĉiuĵaŭde
Passedehhoshangho chiujhaudeeĥoŝanĝo ĉiuĵaŭdeeĥoŝanĝo ĉiuĵaŭde

local tests = require('Module:UnitTests')
local convert = require('Module:eo-spel').convert

local normalize = mw.ustring.toNFD

function tests:check_spelling(word, expected, artificial)
	self:equals(word, normalize(convert(word)), normalize(expected))
end

function tests:test_spel()
	self:check_spelling('ehxosxangxo cxiujxauxde', 'eĥoŝanĝo ĉiuĵaŭde')
	self:check_spelling('ehhoshangho chiujhaude', 'eĥoŝanĝo ĉiuĵaŭde')
end

return tests