File: 42-deparse.t

package info (click to toggle)
libautovivification-perl 0.06-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 284 kB
  • ctags: 83
  • sloc: perl: 1,599; ansic: 181; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 551 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!perl -T

use strict;
use warnings;

use Test::More;

if (eval 'use B::Deparse; 1') {
 plan tests => 2;
} else {
 plan skip_all => 'B::Deparse is not available';
}

my $bd = B::Deparse->new;

{
 no autovivification qw/fetch strict/;

 sub blech { my $key = $_[0]->{key} }
}

{
 my $undef;
 eval 'blech($undef)';
 like $@, qr/Reference vivification forbidden/, 'Original blech() works';
}

{
 my $code = $bd->coderef2text(\&blech);
 my $undef;
 eval "$code; blech(\$undef)";
 like $@, qr/Reference vivification forbidden/, 'Deparsed blech() works';
}