]> git.vpit.fr Git - perl/modules/Variable-Magic.git/blobdiff - t/15-self.t
Only use Capture::Tiny when it is working on a simple example
[perl/modules/Variable-Magic.git] / t / 15-self.t
index cee1dbd35390bccc47865f4c011b38064dc35bf3..cfca7080faaabace5c1b0732dd9b6a96494654e6 100644 (file)
@@ -3,9 +3,9 @@
 use strict;
 use warnings;
 
-use Test::More tests => 16;
+use Test::More tests => 17;
 
-use Variable::Magic qw/wizard cast dispell getdata getsig/;
+use Variable::Magic qw/wizard cast dispell getdata/;
 
 my $c = 0;
 
@@ -39,7 +39,6 @@ my $c = 0;
 
  $w = getdata $wiz, $wiz;
  is($c, 1, 'getdata on magical self doesn\'t trigger callbacks');
- # is(getsig($w), getsig($wiz), 'getdata returns the correct wizard');
 
  $res = eval { dispell $wiz, $wiz };
  is($@, '', 're-dispell on self doesn\'t croak');
@@ -50,4 +49,13 @@ my $c = 0;
  ok($res,   're-re-cast on self is valid');
 }
 
-# is($c, 0, 'magic destructor is called');
+eval q[
+ use lib 't/lib';
+ BEGIN { require Variable::Magic::TestDestroyRequired; }
+];
+is $@, '', 'wizard destruction at the end of BEGIN-time require doesn\'t panic';
+
+if ((defined $ENV{PERL_DESTRUCT_LEVEL} and $ENV{PERL_DESTRUCT_LEVEL} >= 3)
+    or eval "use Perl::Destruct::Level level => 3; 1") {
+ diag 'Test global destruction';
+}