]> git.vpit.fr Git - perl/modules/indirect.git/blobdiff - t/20-bad.t
Test state variables
[perl/modules/indirect.git] / t / 20-bad.t
index a545108a6583d1dbd67747c038b34b601c2c2ad3..136b381934060d8ee22e550b8ac5f9af4a645aaa 100644 (file)
@@ -9,14 +9,17 @@ package main;
 use strict;
 use warnings;
 
-use Test::More tests => 47 * 6 + 2;
+use Test::More tests => 50 * 6 + 2;
+
+use feature 'state';
 
 my ($obj, $x);
 our ($y, $bloop);
+state $z;
 
 sub expect {
  my ($pkg) = @_;
- return qr/^warn:Indirect call of method "(?:new|meh|$pkg$pkg)" on object "(?:$pkg|newnew|\$(?:[xy_\$]|(?:sploosh::)?sploosh|(?:main::)?bloop))"/
+ return qr/^warn:Indirect call of method "(?:new|meh|$pkg$pkg)" on object "(?:$pkg|newnew|\$(?:[xyz_\$]|(?:sploosh::)?sploosh|(?:main::)?bloop))"/
 }
 
 {
@@ -149,6 +152,12 @@ meh $y 1, 2;
 ####
 meh $y, 1, 2;
 ####
+meh $z;
+####
+meh $z 1, 2;
+####
+meh $z, 1, 2;
+####
 package sploosh;
 our $sploosh;
 meh $sploosh::sploosh;