The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/env perl
#
# auto_inherit.t
#
########################################################################
#

package Testcase::Spec::AutoInherit;
use Test::Spec;

describe "Test::Spec" => sub {
  it "should insert itself into the inheritance chain of any package that imports it" => sub {
    ok( Testcase::Spec::AutoInherit->isa('Test::Spec') );
  };
};

runtests unless caller;