X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2FObject-Remote.git;a=blobdiff_plain;f=xt%2Flib%2FTestBridge.pm;fp=xt%2Flib%2FTestBridge.pm;h=7a8b82a59fe5581a1334eaca1af6b7011f22da09;hp=0000000000000000000000000000000000000000;hb=4829a0e16b68906a74ea62265f76c9a68f74893c;hpb=a9fdb55e205b30cfca1cee5f61ab0f1107f750d1 diff --git a/xt/lib/TestBridge.pm b/xt/lib/TestBridge.pm new file mode 100644 index 0000000..7a8b82a --- /dev/null +++ b/xt/lib/TestBridge.pm @@ -0,0 +1,13 @@ +package TestBridge; +use Moo; + +use TestClass; +use Object::Remote; + +has object => (is => 'lazy'); + +sub _build_object { TestClass->new::on('root@') } + +sub result { (shift)->object->result } + +1;