The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package TestBridge;
use Moo;

use TestClass;
use Object::Remote;

has object => (is => 'lazy');

sub _build_object { TestClass->new::on('-') }

sub result { (shift)->object->result }

1;