add scripts/* to MANIFEST
[perl-Redis.git] / t / 10-Redis-List.t
index 1ebdd75..4910e16 100755 (executable)
@@ -5,7 +5,6 @@ use strict;
 
 use Test::More tests => 8;
 use lib 'lib';
-use Data::Dump qw/dump/;
 
 BEGIN {
        use_ok( 'Redis::List' );
@@ -27,4 +26,3 @@ is_deeply( [ @a ], [ 'foo', 'bar', 'baz' ] );
 ok( push( @a, 'push' ), 'push' );
 is_deeply( [ @a ], [ 'foo', 'bar', 'baz', 'push' ] );
 
-#diag dump( @a );