create ReadChannel object to allow moving Shere logic into connect
[scpubgit/Object-Remote.git] / xt / bridged-remote.t
CommitLineData
4829a0e1 1use strictures 1;
2use Test::More;
3use Test::Fatal;
4use FindBin;
5
6use lib "$FindBin::Bin/lib";
7
8use TestClass;
9use Object::Remote;
10
11is exception {
85152176 12 my $bridge = TestBridge->new::on('-');
4829a0e1 13 is $bridge->result, 23;
14}, undef, 'no error during bridge access';
15
16done_testing;