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 / 15topicsafe.t
CommitLineData
3f7169a2
RGS
1#!perl -w
2
3use strict;
4use FindBin;
5use lib "$FindBin::Bin/lib";
6use Test::More 'no_plan';
7
8use Module::Pluggable search_path => 'Acme::MyTest';
9
10my $topic = "topic";
11
12for ($topic) {
13 main->plugins;
14}
15
16is($topic, 'topic', "we've got the right topic");