Skip to content
This repository has been archived by the owner on Apr 8, 2023. It is now read-only.

Commit

Permalink
Fixed some unit tests (still need more coverage); Completed transitio…
Browse files Browse the repository at this point in the history
…n to new raw= argument on most commands; updated version to 1.6.8 in preparation for release to CRAN
  • Loading branch information
bwlewis committed Sep 10, 2013
1 parent def26f1 commit 986da39
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
@@ -1,8 +1,8 @@
Package: rredis
Type: Package
Title: Redis client for R
Version: 1.6.7
Date: 2012-07-14
Version: 1.6.8
Date: 2013-09-10
Author: B. W. Lewis
Maintainer: B. W. Lewis <blewis@illposed.net>
Description: An R client for the Redis persistent key-value database available from http://redis.io.
Expand Down
2 changes: 1 addition & 1 deletion test/basicTest.R
Expand Up @@ -11,7 +11,7 @@ test02_exists <- function() {
test03_delete <- function() {
# delete test
redisFlushAll()
checkEquals(FALSE, suppressWarnings(redisDelete('foo')))
checkEquals(0, suppressWarnings(redisDelete('foo')))
}

test04_empty_get <- function() {
Expand Down
2 changes: 1 addition & 1 deletion test/zsetTest.R
Expand Up @@ -24,7 +24,7 @@ test04_redisZRem <- function()

test05_redisZIncrBy <- function()
{
checkEquals(2, redisZIncrBy("A","x",1))
checkEquals(2, as.integer(redisZIncrBy("A","x",1)))
}

test06_redisZRank <- function()
Expand Down

0 comments on commit 986da39

Please sign in to comment.