Hello, you have come here looking for the meaning of the word
Module:zlw-slv-entryname/testcases. In DICTIOUS you will not only get to know all the dictionary meanings for the word
Module:zlw-slv-entryname/testcases, but we will also tell you about its etymology, its characteristics and you will know how to say
Module:zlw-slv-entryname/testcases in singular and plural. Everything you need to know about the word
Module:zlw-slv-entryname/testcases you have here. The definition of the word
Module:zlw-slv-entryname/testcases will help you to be more precise and correct when speaking or writing your texts. Knowing the definition of
Module:zlw-slv-entryname/testcases, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.
local tests = require("Module:UnitTests")
local makeEntryName = require "Module:zlw-slv-entryname".makeEntryName
local toNfc = mw.ustring.toNFC
local function tag(text)
return '<span class="Latn" lang="zlw-slv">' .. text .. '</span>'
end
function tests:test_makeEntryName()
self:iterate({
{ "gřė̀χ́", "gřėχ́" },
},
function(self, example, expected)
self:equals(tag(example), toNfc(makeEntryName(example)), toNfc(expected))
end)
end
return tests