Add many tests for typeglobs.
[p5sagit/Devel-Size.git] / t / basic.t
index 86c58cd..884cdad 100644 (file)
--- a/t/basic.t
+++ b/t/basic.t
@@ -1,6 +1,6 @@
 #!/usr/bin/perl -w
 
-use Test::More tests => 18;
+use Test::More tests => 17;
 use strict;
 use Devel::Size qw(size total_size);
 use Scalar::Util qw(weaken);
@@ -69,11 +69,6 @@ my($c1,$c2); $c2 = \$c1; $c1 = \$c2;
 is (total_size($c1), total_size($c2), 'circular references');
 
 #############################################################################
-# GLOBS
-
-cmp_ok(total_size(*foo), '>', 0, 'total_size(*foo) > 0');
-
-#############################################################################
 # CODE ref
 
 my $code = sub { '1' };