Documentation for this module may be created at Module:Sandbox/Slomox/Test/doc
local p = {}
p.main = function(frame)
local parent = frame:getParent()
local title = parent:getTitle()
local title2 = "nil";
if parent:getParent() ~= nil then title2 = parent:getParent():getTitle() end
return title .. title2
end
return p