remove comment for bug that was fixed
[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
f129bfaf 8require 't/logsetup.pl';
9
852c2b28 10use Object::Remote;
11
12is exception {
97c80c76 13 my $bridge = ORTestBridge->new::on('-'); #'localhost');
852c2b28 14 is $bridge->call('counter'), 0;
15 $bridge->call('increment');
16 is $bridge->call('counter'), 1;
17}, undef, 'no error during bridge access';
18
19done_testing;