mirror of
https://github.com/lune-org/lune.git
synced 2025-04-03 01:50:55 +01:00
Fix Tests
This commit is contained in:
parent
2d91123796
commit
c960788404
2 changed files with 5 additions and 15 deletions
|
@ -20,14 +20,10 @@ assert(not pcall(function()
|
|||
return child1.Name
|
||||
end))
|
||||
|
||||
assert(not pcall(function()
|
||||
return child1.Parent
|
||||
end))
|
||||
assert(not child1.Parent)
|
||||
|
||||
assert(not pcall(function()
|
||||
return child2.Name
|
||||
end))
|
||||
|
||||
assert(not pcall(function()
|
||||
return child2.Parent
|
||||
end))
|
||||
assert(not child2.Parent)
|
||||
|
|
|
@ -14,22 +14,16 @@ assert(not pcall(function()
|
|||
return root.Name
|
||||
end))
|
||||
|
||||
assert(not pcall(function()
|
||||
return root.Parent
|
||||
end))
|
||||
assert(not root.Parent)
|
||||
|
||||
assert(not pcall(function()
|
||||
return child.Name
|
||||
end))
|
||||
|
||||
assert(not pcall(function()
|
||||
return child.Parent
|
||||
end))
|
||||
assert(not child.Parent)
|
||||
|
||||
assert(not pcall(function()
|
||||
return descendant.Name
|
||||
end))
|
||||
|
||||
assert(not pcall(function()
|
||||
return descendant.Parent
|
||||
end))
|
||||
assert(not descendant.Parent)
|
||||
|
|
Loading…
Add table
Reference in a new issue