The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

use strict;
use Test::More 0.88;
'Test::CleanNamespaces' => 0,
};
{
package T;
use strict;
use warnings;
use lib 't/lib';
my $loader = Module::Implementation::build_loader_sub(
implementations => [ 'Impl1', 'Impl2' ],
symbols => ['return_42'],
);
$loader->();
}
$INC{'T.pm'} = 1;
{
local $TODO = q{Without Sub::Name there's no good way to avoid dirtiness};
namespaces_clean('T');
}
done_testing();