mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 21:10:36 +00:00
19 lines
573 B
Text
19 lines
573 B
Text
local fs = require("@lune/fs")
|
|
local roblox = require("@lune/roblox")
|
|
local Instance = roblox.Instance
|
|
|
|
local modelFile = fs.readFile("tests/roblox/rbx-test-files/models/three-nested-folders/binary.rbxm")
|
|
local model = roblox.deserializeModel(modelFile)[1]
|
|
|
|
assert(#model:GetDescendants() == 2)
|
|
|
|
local newChild = Instance.new("Model")
|
|
newChild.Parent = model
|
|
|
|
assert(#model:GetDescendants() == 3)
|
|
assert(table.find(model:GetDescendants(), newChild) == 2)
|
|
|
|
newChild:Destroy()
|
|
|
|
assert(#model:GetDescendants() == 2)
|
|
assert(table.find(model:GetDescendants(), newChild) == nil)
|