module:sandbox/PC-XT/Coordinates

local sandbox = {};

function sandbox.test(frame)

frame:callParserFunction('#coordinates', {80, 30})

return "Passed"

end

function sandbox.empty(frame)

frame:callParserFunction('#coordinates', {})

return "Passed"

end

function sandbox.nameonly(frame)

frame:callParserFunction('#coordinates', {name='test'})

return "Passed"

end

function sandbox.nameglobeonly(frame)

frame:callParserFunction('#coordinates', {name='test',globe='pluto'})

return "Passed"

end

return sandbox