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