- The following documentation is located at Module:eo-spel/testcases/documentation. [edit]
- Useful links: root page • root page’s subpages • links • transclusions • tested module • sandbox
All tests passed. (refresh)
Text | Expected | Actual | |
---|---|---|---|
ehxosxangxo cxiujxauxde | eĥoŝanĝo ĉiuĵaŭde | eĥoŝanĝo ĉiuĵaŭde | |
ehhoshangho chiujhaude | eĥoŝanĝo ĉiuĵaŭde | eĥ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