9 lines
224 B
Plaintext
9 lines
224 B
Plaintext
// Test: $couple($self) is a no-op, $couple on a child doesn't disrupt
|
|
$couple($self)
|
|
$start(function(event) {
|
|
if (event.type == 'greet') {
|
|
$couple(event.actor)
|
|
$delay($stop, 0.1)
|
|
}
|
|
}, 'tests/actor_helper_echo')
|