start and await_all working
[scpubgit/Object-Remote.git] / t / sender.t
CommitLineData
542d5b5c 1use strictures 1;
2use Test::More;
3
4use Object::Remote::Connector::Local;
5use Object::Remote;
6use Object::Remote::ModuleSender;
7
8$ENV{PERL5LIB} = join(
9 ':', ($ENV{PERL5LIB} ? $ENV{PERL5LIB} : ()), qw(lib)
10);
11
12my $connection = Object::Remote::Connector::Local->new->connect;
13
14my $ms = Object::Remote::ModuleSender->new(
15 dir_list => [ 't/lib' ]
16);
17
18my $ml = Object::Remote->new(
19 connection => $connection,
20 class => 'Object::Remote::ModuleLoader',
21 args => { module_sender => $ms },
22);
23
24my $proxy = Object::Remote->new(
25 connection => $connection,
26 class => 'ORTestClass'
27)->proxy;
28
29isnt($$, $proxy->pid, 'Different pid on the other side');
30
31is($proxy->counter, 0, 'Counter at 0');
32
33is($proxy->increment, 1, 'Increment to 1');
34
35is($proxy->counter, 1, 'Counter at 1');
36
37done_testing;