Regenerate test files
[gitmo/Mouse.git] / t / 010_basics / 020-global-destruction-helper.pl
index a690d4d..fc0c3a8 100644 (file)
@@ -1,8 +1,11 @@
 #!/usr/bin/perl
+# This is automatically generated by author/import-moose-test.pl.
+# DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!!
+use t::lib::MooseCompat;
 
 use strict;
 use warnings;
-no warnings 'once'; # work around 5.6.2
+
 
 {
     package Foo;
@@ -12,7 +15,7 @@ no warnings 'once'; # work around 5.6.2
         my $self = shift;
         my ($igd) = @_;
 
-        print $igd || 0, "\n";
+        print $igd;
     }
 }
 
@@ -24,7 +27,7 @@ no warnings 'once'; # work around 5.6.2
         my $self = shift;
         my ($igd) = @_;
 
-        print $igd || 0, "\n";
+        print $igd;
     }
 
     __PACKAGE__->meta->make_immutable;