Skip to content

Commit

Permalink
fixed typo in EXPIREAT
Browse files Browse the repository at this point in the history
  • Loading branch information
friedo committed Mar 9, 2012
1 parent 4a83975 commit fdef3a9
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Redis/Client.pm
Expand Up @@ -21,7 +21,7 @@ BEGIN {
DEL => [ 1, undef ],
EXISTS => 1,
EXPIRE => 2,
EXPITEAT => 2,
EXPIREAT => 2,
KEYS => 1,
MOVE => 2,
OBJECT => [ 1, undef ],
Expand Down
22 changes: 22 additions & 0 deletions t/cmd_expireat.t
@@ -0,0 +1,22 @@
#!/usr/bin/env perl

use strict;
use warnings;
use utf8;
use lib 't';

use Test::More;

# ABSTRACT: Tests for the Redis EXPIREAT command.

use_ok 'RedisClientTest';

my $redis = RedisClientTest->server;
done_testing && exit unless $redis;

isa_ok $redis, 'Redis::Client';

# TODO: write tests!

done_testing;

0 comments on commit fdef3a9

Please sign in to comment.