def test_remote_exec_channel_anonymous(self):
channel = self.gw.remote_exec('''
obj = channel.receive()
channel.send(obj)
-> ''')
channel.send(42)
result = channel.receive()
assert result == 42