mud/fluffos-2.23-ds03/testsuite/single/tests/efuns/children.c
2020-09-06 05:43:07 -07:00

14 lines
224 B
C

void do_tests() {
object x;
foreach (x in children(__FILE__))
if (x != this_object()) destruct(x);
for (int i = 0; i < 5; i++)
new(__FILE__);
ASSERT(sizeof(children(__FILE__)) == 6);
}