Jump to content

Module:Check for unknown parameters/testcases

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Gonnym (talk | contribs) at 19:09, 29 December 2019. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
-- Unit tests for [[Module:Check for unknown parameters]]. Click talk page to run tests.
local p = require('Module:UnitTests')

function p:test_01_1_check_live()
	self:preprocess_equals_many('{{Module talk:Check for unknown parameters/testcases/template call|', '}}', {
	{"arg1=arg1| arg2=arg2 | name=name | height=height | weight=weight | website=website", "Unknown name,Unknown height,Unknown website,Unknown weight,"},
	})
end

function p:test_01_2_check_sandbox()
	self:preprocess_equals_many('{{Module talk:Check for unknown parameters/testcases/template call/sandbox|', '}}', {
	{"arg1=arg1| arg2=arg2 | name=name | height=height | weight=weight | website=website", "Unknown name,Unknown height,Unknown website,Unknown weight,"},
	})
end

return p