Модуль:CallMW/tests: различия между версиями

Материал из Народные Сказки
(Новая страница: «local p = require('Module:UnitTests') function p:test_mw() self:preprocess_equals( '{{#invoke:CallMW|mw|wikibase|getEntityIdForCurrentPage}}', mw.wikibase.getEntityIdForCurrentPage() or '' ) self:preprocess_equals( '{{#invoke:CallMW|mw|wikibase|getEntityIdForTitle|Октиллион}}', mw.wikibase.getEntityIdForTitle('Октиллион') ) self:preprocess_equals( '{{#invoke:CallMW|mw|wikibase|getEntityIdForTitle|Octilli...»)
 
м (1 версия импортирована)
 
(нет различий)

Текущая версия от 12:53, 1 мая 2024

Модуль тестов для Модуль:CallMW.


local p = require('Module:UnitTests')

function p:test_mw()
	self:preprocess_equals(
    	'{{#invoke:CallMW|mw|wikibase|getEntityIdForCurrentPage}}',
    	mw.wikibase.getEntityIdForCurrentPage() or ''
    )
	self:preprocess_equals(
    	'{{#invoke:CallMW|mw|wikibase|getEntityIdForTitle|Октиллион}}',
    	mw.wikibase.getEntityIdForTitle('Октиллион')
    )
	self:preprocess_equals(
    	'{{#invoke:CallMW|mw|wikibase|getEntityIdForTitle|Octillion|enwiki}}',
    	mw.wikibase.getEntityIdForTitle('Octillion', 'enwiki')
    )
	self:preprocess_equals(
    	'{{#invoke:CallMW|mw|ustring|codepoint| }}',
    	tostring(mw.ustring.codepoint(' '))
    )
end

return p