From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#!/usr/bin/perl
package Sample;
use 5.012;
use Moo;
has xml => ( is => 'ro', default => sub { return File::Spec->catfile( 't', 'test-the-test', 'sample.xml' ) } );
with 'Map::Tube';
1;