imported>Mdowdell
No edit summary
 
(No difference)

Latest revision as of 11:59, 13 June 2015

Documentation for this module may be created at Module:Sandbox/Mdowdell/doc

-- error handling tests
local p = {}

function p.test()
	local data = mw.loadData( 'Module:Does not exist' )
	return data
end

function p.test2()
	error( 'foo' )
end

function p.htmlErrorTest()
	local a = mw.html.create('foo')
	a.cssText(0)
	return a
end

return p