add some PREREQ_PM
[p5sagit/Devel-Size.git] / t / pvbm.t
index 9e3c6b2..d15817d 100644 (file)
--- a/t/pvbm.t
+++ b/t/pvbm.t
@@ -2,7 +2,7 @@
 
 use strict;
 use Test::More tests => 2;
-use Devel::Size ':all';
+use Devel::Memory ':all';
 use Config;
 
 use constant PVBM => 'galumphing';
@@ -17,8 +17,6 @@ if($Config{useithreads}) {
 } else {
     cmp_ok(total_size(PVBM), '>', total_size(PVBM . ''),
           "PVBMs don't cause SEGVs");
-    local $TODO = 'PVBMs not yet handled properly in 5.10.0 and later'
-       if $] >= 5.010;
     cmp_ok(total_size(PVBM), '>', total_size(PVBM . '') + 256,
           "PVBMs use 256 bytes for a lookup table");
 }