Module:I18n/testcases
Appearance
This is the test cases page for the module Module:I18n. Results of the test cases. |
-- Example Unit tests for [[Module:i18n]]. Click talk page to run tests.
local p = require('Module:UnitTests')
function p:_test()
local i18n = { a = 'x', b = 'y', };
require('Module:i18n').loadI18n('Module:i18n/testcases/i18n', i18n)
return mw.dumpObject(i18n)
end
function p:test()
self:preprocess_equals('{{#invoke:i18n/testcases|_test}}', '')
end
return p