Module:Infobox dim/testcases
Appearance
![]() | This is the test cases page for the module Module:Infobox dim. Results of the test cases. |
-- Unit tests for [[Module:Infobox dim]]. Click talk page to run tests.
local p = require('Module:UnitTests')
-- Test dim
function p:test_dim()
self:preprocess_equals_many('{{#invoke:Infobox dim | dim |','}}', {
{'length_km=20|width_km=30','15km'},
{'length_mi=20|width_mi=30','24km'},
{'width_km=20|length_km=30','15km'},
{'width_mi=20|length_mi=30','24km'},
{'length_km=20','10km'},
{'length_mi=20','16km'},
{'width_km=30','15km'},
{'width_mi=30','24km'},
{'area_km2=300','17km'},
{'area_mi2=200','22km'},
{'area_ha=30,000','17km'},
{'area_acre=75,000','17km'},
{'dim=50km','50km'},
{'scale=100000','24km'},
{'type=mountain','24km'},
{'type=city|population=100000','11km'},
{'type=mountain|length_km=20','10km'}
})
self:preprocess_equals('{{#invoke:Infobox dim | dim }}','')
end
return p