#!/usr/bin/env perl
use
strict;
use
warnings;
use
utf8;
use
Test::More;
# ABSTRACT: Tests for the Redis RENAME command.
use_ok
'RedisClientTest'
;
my
$redis
= RedisClientTest->server;
done_testing &&
exit
unless
$redis
;
isa_ok
$redis
,
'Redis::Client'
;
# TODO: write tests!
done_testing;