Module:qhv-pron/testcases
Jump to navigation
Jump to search
3 tests failed. (refresh)
- The following documentation is located at Module:qhv-pron/testcases/doc.[edit]
- Useful links: root page • root page's subpages • links • transclusions • testcases • sandbox
3 tests failed. (refresh)
Text | Expected | Actual | |
---|---|---|---|
drakarys | draˈkarys | draˈkaɾys | |
valonqar | vaˈloɴqar | vaˈloɴqar | |
Thoros | ˈθoɾos | ˈθoɾos | |
arakh | aˈɾax | ˈaɾax | |
ēngos | ˈeːŋɡos | ˈeːŋɡos | |
amīvindigon | amiːˈvindiɡon | amiːˈvindiɡon | |
ojehiknon | ojeˈhiknon | ojeˈhiknon | |
pōja | ˈpoːja | ˈpoːja | |
riña | ˈriɲa | ˈriɲa | |
zirȳla | ziˈryːla | ziˈɾyːla |
local tests = require('Module:UnitTests')
local m_IPA = require('Module:qhv-pron')
local function IPA_style(IPA)
return '<span style="font-size:110%;font-family:Gentium,\'DejaVu Sans\',\'Segoe UI\',sans-serif>' .. IPA .. '</span>'
end
local function linkup(text)
return "[[Contionary:" .. text .. "#High Valyrian|" .. text .. "]]"
end
function tests:check_output(term, expected)
return tests:equals(
linkup(term),
m_IPA.crux(term),
expected,
{ display = IPA_style }
)
end
function tests:test_example()
local list = {
{"drakarys", "draˈkarys"},
{"valonqar", "vaˈloɴqar"},
{"Thoros", "ˈθoɾos"},
{"arakh", "aˈɾax"},
{"ēngos", "ˈeːŋɡos"},
{"amīvindigon", "amiːˈvindiɡon"},
{"ojehiknon", "ojeˈhiknon"},
{"pōja", "ˈpoːja"},
{"riña", "ˈriɲa"},
{"zirȳla", "ziˈryːla"},
}
self:iterate(list, "check_output")
end
return tests