https://en.wikipedia.org/w/index.php?action=history&feed=atom&title=Module%3ABad_title_suggestion%2FtestcasesModule:Bad title suggestion/testcases - Revision history2025-06-10T10:44:41ZRevision history for this page on the wikiMediaWiki 1.45.0-wmf.4https://en.wikipedia.org/w/index.php?title=Module:Bad_title_suggestion/testcases&diff=1009191579&oldid=prevThe Earwig: create2021-02-27T06:35:35Z<p>create</p>
<p><b>New page</b></p><div>-- Unit tests for [[Module:Bad title suggestion]]. Click talk page to run tests.<br />
local p = require('Module:UnitTests')<br />
<br />
function p:test_basic()<br />
self:preprocess_equals_preprocess('{{#invoke:Bad title suggestion|main|>|Foobar&#62;}}', '{{Did you mean box|Foobar}}')<br />
end<br />
<br />
function p:test_namespaced()<br />
self:preprocess_equals_preprocess('{{#invoke:Bad title suggestion|main|}|Wikipedia:Village pump&#125;&#125;}}', '{{Did you mean box|Wikipedia:Village pump}}')<br />
end<br />
<br />
function p:test_pipe()<br />
self:preprocess_equals_preprocess('{{#invoke:Bad title suggestion|main|||Main Page&#124;title text}}', '{{Did you mean box|Main Page}}')<br />
end<br />
<br />
function p:test_missing()<br />
self:preprocess_equals_preprocess('{{#invoke:Bad title suggestion|main|>|This page absolutely does not exist&#62;}}', '')<br />
end<br />
<br />
function p:test_category()<br />
self:preprocess_equals_preprocess('{{#invoke:Bad title suggestion|main|>|Category:Contents&#62;}}', '{{Did you mean box|Category:Contents}}')<br />
end<br />
<br />
function p:test_first_invalid()<br />
self:preprocess_equals_preprocess('{{#invoke:Bad title suggestion|main|<|&60;Foobar&#62;}}', '')<br />
end<br />
<br />
function p:test_empty()<br />
self:preprocess_equals_preprocess('{{#invoke:Bad title suggestion|main|>|}}', '')<br />
end<br />
<br />
return p</div>The Earwig