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

11 lines
176 B
C

void do_tests() {
object tp = this_player();
if (tp) {
ASSERT(exec(this_object(), tp));
ASSERT(userp(this_object()));
ASSERT(exec(tp, this_object()));
}
}