Module:Layout/Production/Test/Logo
Deze module is nog in ontwikkeling (versie 0.0) en wordt getest.
De Module:Layout is bedoeld om snel, consistent en uitgebreid een pagina op te maken.
Er is een op de module afgestemde handleiding over deze onderwijswiki beschikbaar.
De module wordt geïnitialiseerd met de configuratie in Module:Layout/Production/Configuration.
The only test is ok.
Name | Expected | Actual | |
---|---|---|---|
test_Logo |
local test = {};
local CFG = require( "Module:Layout/Production/Configuration" );
local logo = CFG.INCLUDE( "production", "logo" );
local unittest = CFG.INCLUDE( "production", "unittest" );
test = unittest:new();
function test.main( frame )
return test.run( frame );
end
function test:test_Logo()
local call = {};
call.source = "Huma.JPG";
local result1 = '<div>[[File:Huma.JPG|300px|Logo|center]]</div>';
self:assertEquals( result1, logo.main( call ) , "Valid Huma.JPG" );
end
return test;