Exclude vendorarch and sitearch from FatNode and ModuleSender
[scpubgit/Object-Remote.git] / t / bridged.t
CommitLineData
852c2b28 1use strictures 1;
2use Test::More;
3use Test::Fatal;
4use FindBin;
5
6use lib "$FindBin::Bin/lib";
7
8use Object::Remote;
9
10is exception {
97c80c76 11 my $bridge = ORTestBridge->new::on('-'); #'localhost');
852c2b28 12 is $bridge->call('counter'), 0;
13 $bridge->call('increment');
14 is $bridge->call('counter'), 1;
15}, undef, 'no error during bridge access';
16
17done_testing;