Commit 7d5f5712 authored by Pieter Noordhuis's avatar Pieter Noordhuis
Browse files

Update tests for STRLEN

parent ad1b4f4f
...@@ -361,18 +361,18 @@ start_server {tags {"basic"}} { ...@@ -361,18 +361,18 @@ start_server {tags {"basic"}} {
list [r msetnx x1 xxx y2 yyy] [r get x1] [r get y2] list [r msetnx x1 xxx y2 yyy] [r get x1] [r get y2]
} {1 xxx yyy} } {1 xxx yyy}
test {STRLEN against non existing key} { test "STRLEN against non-existing key" {
r strlen notakey assert_equal 0 [r strlen notakey]
} {0} }
test {STRLEN against integer} { test "STRLEN against integer-encoded value" {
r set myinteger -555 r set myinteger -555
r strlen myinteger assert_equal 4 [r strlen myinteger]
} {4} }
test {STRLEN against plain string} { test "STRLEN against plain string" {
r set mystring "foozzz0123456789 baz" r set mystring "foozzz0123456789 baz"
r strlen mystring assert_equal 20 [r strlen mystring]
} }
test "SETBIT against non-existing key" { test "SETBIT against non-existing key" {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment