Module:siwa-noun/testcases: Difference between revisions

From Linguifex
Jump to navigation Jump to search
No edit summary
No edit summary
Line 25: Line 25:
]=]
]=]
}
}
self:iterate(list,"check_output")
self:iterate(list,"check_inflection")
end
end


return tests
return tests

Revision as of 14:07, 18 July 2021


All tests passed. (refresh)

TextExpectedActual
test_example:
sivi
| Contionary:sivi

| Contionary:sỉd | Contionary:sỉdia | Contionary:sỉhta | Contionary:sỉhka | Contionary:sỉhma | Contionary:sỉbma, Contionary:sỉddįibma | Contionary:sỉska, Contionary:sỉddįiska


local tests = require('Module:UnitTests')
local m_noun = require('Module:siwa-noun')

function tests:check_output(term, expected, noresp)
	return tests:equals(
		term,
		m_noun.make_cases(),
		expected,
		{ show_difference = true }
	)
end

function tests:test_example()
	local list= {
		"sivi",
		[=[
		  | [[Contionary:sivi]]
		  | [[Contionary:sỉd]]
		  | [[Contionary:sỉdia]]
		  | [[Contionary:sỉhta]]
		  | [[Contionary:sỉhka]]
		  | [[Contionary:sỉhma]]
		  | [[Contionary:sỉbma]], [[Contionary:sỉddįibma]]
		  | [[Contionary:sỉska]], [[Contionary:sỉddįiska]]
		]=]
	}
	self:iterate(list,"check_inflection")
end

return tests