Jump to content

Module:Wikipedia ads/testcases: Difference between revisions

From Humanipedia
hp>Aaron Liu
add case for nonexistent ad
 
m 1 revision imported
 
(No difference)

Latest revision as of 06:15, 3 February 2025

Documentation for this module may be created at Module:Wikipedia ads/testcases/doc

-- 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=40}}', '{{wikipedia ads/sandbox|ad=40}}')
    self:preprocess_equals_preprocess('{{wikipedia ads|ad=175|navbox=yes}}', '{{wikipedia ads/sandbox|ad=175|navbox=yes}}')
end
 
return p