Files
cell/tests/actor_connection.ce

10 lines
254 B
Plaintext

// Test: $connection reports local for a child actor
$start(function(event) {
if (event.type == 'greet') {
$connection(function(info) {
if (info.type != "local") disrupt
$stop()
}, event.actor, {})
}
}, 'tests/actor_helper_echo')