This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
patch@32274 t/op/taint.t not cleaning up properly on VMS.
[perl5.git] / t / Module_Pluggable / 17devel_inner_package.t
CommitLineData
3f7169a2
RGS
1#!perl -w
2use Test::More tests => 3;
3
4use Devel::InnerPackage qw(list_packages);
5use FindBin;
6use lib "$FindBin::Bin/lib";
7
8my @packages;
9
10use_ok("TA::C::A::I");
11ok(@packages = list_packages("TA::C::A::I"));
12
13is_deeply([sort @packages], [qw(TA::C::A::I::A TA::C::A::I::A::B)]);
14
15