The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
|
#!perl
use lib "$FindBin::Bin/../lib" ; my $foo = Foo::Bar->new;
ok( $foo ->isa( 'Foo::Bar' ), '... the object is from class Foo' );
ok( $foo ->isa( 'mop::object' ), '... the object is derived from class Object' );
done_testing;
|