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