Files
cell/tests/actor_overling.ce

10 lines
258 B
Plaintext

// Test: child actor reports $overling is not null
$start(function(event) {
if (event.type == 'greet') {
send(event.actor, {check: true}, function(reply) {
if (!reply.has_overling) disrupt
$stop()
})
}
}, 'tests/actor_helper_report')