summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/tests/unit/quit.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/tests/unit/quit.tcl')
-rw-r--r--examples/redis-unstable/tests/unit/quit.tcl33
1 files changed, 0 insertions, 33 deletions
diff --git a/examples/redis-unstable/tests/unit/quit.tcl b/examples/redis-unstable/tests/unit/quit.tcl
deleted file mode 100644
index 50ccab1..0000000
--- a/examples/redis-unstable/tests/unit/quit.tcl
+++ /dev/null
@@ -1,33 +0,0 @@
-start_server {tags {"quit"}} {
-
- test "QUIT returns OK" {
- reconnect
- assert_equal OK [r quit]
- assert_error * {r ping}
- }
-
- test "Pipelined commands after QUIT must not be executed" {
- reconnect
- r write [format_command quit]
- r write [format_command set foo bar]
- r flush
- assert_equal OK [r read]
- assert_error * {r read}
-
- reconnect
- assert_equal {} [r get foo]
- }
-
- test "Pipelined commands after QUIT that exceed read buffer size" {
- reconnect
- r write [format_command quit]
- r write [format_command set foo [string repeat "x" 1024]]
- r flush
- assert_equal OK [r read]
- assert_error * {r read}
-
- reconnect
- assert_equal {} [r get foo]
-
- }
-}