Module:aa-IPA/testcases
Jump to navigation
Jump to search
- The following documentation is located at Module:aa-IPA/testcases/documentation. [edit] Categories were auto-generated by Module:module categorization. [edit]
- Useful links: root page • root page’s subpages • links • transclusions • tested module • sandbox
1 of 4 tests failed. (refresh)
Text | Expected | Actual | Differs at | |
---|---|---|---|---|
abalsiise | a‧bal‧sii‧se | a‧bal‧sii‧se | ||
derrel | der‧rel | der‧rel | ||
absuma | ab‧su‧ma | ab‧su‧ma | ||
taban kee affara | ta‧ban kee af‧fa‧ra | ta‧ban kee af‧fa‧ra |
Text | Expected | Actual | Differs at | |
---|---|---|---|---|
Script error during testing: Module:aa-IPA/testcases:12: attempt to call field 'pronunciation_phonemic' (a nil value)stack traceback: [C]: in function 'pronunciation_phonemic' Module:aa-IPA/testcases:12: in function 'func' Module:UnitTests:295: in function 'iterate' Module:aa-IPA/testcases:32: in function <Module:aa-IPA/testcases:16> (tail call): ? [C]: in function 'xpcall' Module:UnitTests:369: in function <Module:UnitTests:328> (tail call): ? mw.lua:527: in function <mw.lua:507> [C]: ? [C]: in function 'expandTemplate' mw.lua:333: in function 'expandTemplate' Module:documentation:894: in function 'chunk' mw.lua:527: in function <mw.lua:507> [C]: ? |
local tests = require("Module:UnitTests")
local m_IPA = require("Module:aa-IPA")
local lang = require("Module:languages").getByCode("aa")
local function tag_IPA(IPA) return '<span class="IPA">' .. IPA .. '</span>' end
local options = {display = tag_IPA}
local function link(word) return require("Module:links").full_link({term = word, lang = lang}, nil, true) end
function tests:check_pron(word, expected)
self:equals(
link(word), m_IPA.pronunciation_phonemic(word), expected, options
)
end
function tests:test_pron()
local examples = {
{"derrél", "derˈrel"},
{"caxák", "ħʌˈɖʌk"},
{"qalék", "ʕʌˈlek"},
{"gúra", "ˈɡuɾʌ"},
{"mídga", "ˈmidɡʌ"},
{"bagitté", "bʌɡitˈte"},
{"bágu", "ˈbʌɡu"},
{"fóoca", "ˈfoːħʌ"},
{"darreerá", "dʌrːeːˈɾʌ"},
{"abbaasité", "ʌbːaːsiˈte"},
{"tabàn kee affará", "tʌˌbʌn keː ʌfːʌˈɾʌ"},
{"-í", "-ˈi"}
}
tests:iterate(examples, "check_pron")
end
function tests:test_hyphenation()
local function format_hyphenation(hyphenation)
return table.concat(hyphenation, "‧")
end
self:iterate(
{
{ "abalsiise", { "a", "bal", "sii", "se" } },
{ "derrel", { "der", "rel" } },
{ "absuma", { "ab", "su", "ma" } },
{ "taban kee affara", { "ta", "ban kee af", "fa", "ra" } }
},
function(self, term, expected)
self:equals(
link(term),
format_hyphenation(m_IPA.syllabify(term)),
format_hyphenation(expected)
)
end
)
end
return tests