blob: 8002404dbb5998038081d9468f4f1f9555048bae (
plain)
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
|
#!./perl
BEGIN {
unless (-d 'blib') {
chdir 't' if -d 't';
@INC = '../lib';
require Config; import Config;
keys %Config; # Silence warning
if ($Config{extensions} !~ /\bList\/Util\b/) {
print "1..0 # Skip: List::Util was not built\n";
exit 0;
}
}
}
use Test::More tests => 8;
use Scalar::Util qw(blessed);
use vars qw($t $x);
ok(!blessed(undef), 'undef is not blessed');
ok(!blessed(1), 'Numbers are not blessed');
ok(!blessed('A'), 'Strings are not blessed');
ok(!blessed({}), 'Unblessed HASH-ref');
ok(!blessed([]), 'Unblessed ARRAY-ref');
ok(!blessed(\$t), 'Unblessed SCALAR-ref');
$x = bless [], "ABC";
is(blessed($x), "ABC", 'blessed ARRAY-ref');
$x = bless {}, "DEF";
is(blessed($x), "DEF", 'blessed HASH-ref');
|