inst/tinytest/test_exists.R

#test_01_setup <- function() {
suppressMessages(library(RcppRedis))
redis <- new(Redis)
key <- "RcppRedis:test:myexists"


#test_02_exists <- function() {
redis$set(key, 10)
n <- redis$exists(key)
expect_equal(n, 1)


#test_02_doesNotExist <- function() {
n <- redis$exists("thisKeyIsNotSet-test")
expect_equal(n, 0)


#test_03_cleanup <- function() {
## delete key
n <- redis$exec(paste("del", key))
expect_equal(n, 1)

Try the RcppRedis package in your browser

Any scripts or data that you put into this service are public.

RcppRedis documentation built on Aug. 19, 2023, 5:13 p.m.