Module:Wikipedia ads/testcases: Difference between revisions
Appearance
Content deleted Content added
make tests actually compare with sandbox without randomness |
i don't get this usage |
||
Line 4: | Line 4: | ||
function p:test_hello() |
function p:test_hello() |
||
self:preprocess_equals_preprocess('{{wikipedia ads|ad=175}}', '{{wikipedia ads/sandbox|ad=175}}') |
self:preprocess_equals_preprocess('{{wikipedia ads|ad=175}}', '{{wikipedia ads/sandbox|ad=175}}') |
||
self:preprocess_equals_preprocess('{{wikipedia ads |
self:preprocess_equals_preprocess('{{wikipedia ads|175}}', '{{wikipedia ads/sandbox|175}}') |
||
self:preprocess_equals_preprocess('{{wikipedia ads|ad=175|linkcolor=red|color=blue|background=yellow}}', '{{wikipedia ads/sandbox|ad=175|linkcolor=red|color=blue|background=yellow}}') |
self:preprocess_equals_preprocess('{{wikipedia ads|ad=175|linkcolor=red|color=blue|background=yellow}}', '{{wikipedia ads/sandbox|ad=175|linkcolor=red|color=blue|background=yellow}}') |
||
self:preprocess_equals_preprocess('{{wikipedia ads|ad=175}}', '{{wikipedia ads/sandbox|ad=175}}') |
self:preprocess_equals_preprocess('{{wikipedia ads|ad=175}}', '{{wikipedia ads/sandbox|ad=175}}') |
Revision as of 16:07, 11 June 2023
![]() | This is the test cases page for the module Module:Wikipedia ads. Results of the test cases. |
-- Unit tests for [[Module:Wikipedia ads]]. Click talk page to run tests.
local p = require('Module:UnitTests')
function p:test_hello()
self:preprocess_equals_preprocess('{{wikipedia ads|ad=175}}', '{{wikipedia ads/sandbox|ad=175}}')
self:preprocess_equals_preprocess('{{wikipedia ads|175}}', '{{wikipedia ads/sandbox|175}}')
self:preprocess_equals_preprocess('{{wikipedia ads|ad=175|linkcolor=red|color=blue|background=yellow}}', '{{wikipedia ads/sandbox|ad=175|linkcolor=red|color=blue|background=yellow}}')
self:preprocess_equals_preprocess('{{wikipedia ads|ad=175}}', '{{wikipedia ads/sandbox|ad=175}}')
self:preprocess_equals_preprocess('{{wikipedia ads|ad=175|navbox=yes}}', '{{wikipedia ads/sandbox|ad=175|navbox=yes}}')
end
return p