File: blessed.t

package info (click to toggle)
libscalar-list-utils-perl 1%3A1.47-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 496 kB
  • sloc: perl: 1,567; ansic: 130; makefile: 3
file content (48 lines) | stat: -rw-r--r-- 1,055 bytes parent folder | download | duplicates (6)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!./perl

use strict;
use warnings;

use Test::More tests => 11;
use Scalar::Util qw(blessed);

my $t;

ok(!defined blessed(undef),	'undef is not blessed');
ok(!defined blessed(1),		'Numbers are not blessed');
ok(!defined blessed('A'),	'Strings are not blessed');
ok(!defined blessed({}),	'Unblessed HASH-ref');
ok(!defined blessed([]),	'Unblessed ARRAY-ref');
ok(!defined blessed(\$t),	'Unblessed SCALAR-ref');

my $x;

$x = bless [], "ABC";
is(blessed($x), "ABC",	'blessed ARRAY-ref');

$x = bless {}, "DEF";
is(blessed($x), "DEF",	'blessed HASH-ref');

$x = bless {}, "0";
cmp_ok(blessed($x), "eq", "0",	'blessed HASH-ref');

{
  my $blessed = do {
    my $depth;
    no warnings 'redefine';
    local *UNIVERSAL::can = sub { die "Burp!" if ++$depth > 2; blessed(shift) };
    $x = bless {}, "DEF";
    blessed($x);
  };
  is($blessed, "DEF", 'recursion of UNIVERSAL::can');
}

{
  package Broken;
  sub isa { die };
  sub can { die };

  my $obj = bless [], __PACKAGE__;
  ::is( ::blessed($obj), __PACKAGE__, "blessed on broken isa() and can()" );
}