This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Locale-Maketext: Swap out base for parent (bowtie)
authorkevin dawson <bowtie@cpan.org>
Wed, 21 Aug 2013 12:23:59 +0000 (13:23 +0100)
committerJames E Keenan <jkeenan@cpan.org>
Thu, 22 Aug 2013 02:01:31 +0000 (04:01 +0200)
For: RT #119403

dist/Locale-Maketext/t/30_eval_dollar_at.t

index 33581b3..febc2f1 100644 (file)
@@ -3,12 +3,12 @@ use warnings;
 
 {
     package TEST;
-    use base 'Locale::Maketext';
+    use parent qw(Locale::Maketext);
 }
 
 {
     package TEST::en;
-    use base 'TEST';
+    use parent -norequire, qw(TEST);
     our %Lexicon = (
         _AUTO => 1,
     );