Re: localising hash element by variable
[p5sagit/p5-mst-13.2.git] / t / Module_Pluggable / 15topicsafe.t
CommitLineData
3f7169a2 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");