summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/tests/unit/moduleapi/eventloop.tcl
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
commitdcacc00e3750300617ba6e16eb346713f91a783a (patch)
tree38e2d4fb5ed9d119711d4295c6eda4b014af73fd /examples/redis-unstable/tests/unit/moduleapi/eventloop.tcl
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/redis-unstable/tests/unit/moduleapi/eventloop.tcl')
-rw-r--r--examples/redis-unstable/tests/unit/moduleapi/eventloop.tcl28
1 files changed, 0 insertions, 28 deletions
diff --git a/examples/redis-unstable/tests/unit/moduleapi/eventloop.tcl b/examples/redis-unstable/tests/unit/moduleapi/eventloop.tcl
deleted file mode 100644
index ba0d4a2..0000000
--- a/examples/redis-unstable/tests/unit/moduleapi/eventloop.tcl
+++ /dev/null
@@ -1,28 +0,0 @@
-set testmodule [file normalize tests/modules/eventloop.so]
-
-start_server {tags {"modules external:skip"}} {
- r module load $testmodule
-
- test "Module eventloop sendbytes" {
- assert_match "OK" [r test.sendbytes 5000000]
- assert_match "OK" [r test.sendbytes 2000000]
- }
-
- test "Module eventloop iteration" {
- set iteration [r test.iteration]
- set next_iteration [r test.iteration]
- assert {$next_iteration > $iteration}
- }
-
- test "Module eventloop sanity" {
- r test.sanity
- }
-
- test "Module eventloop oneshot" {
- r test.oneshot
- }
-
- test "Unload the module - eventloop" {
- assert_equal {OK} [r module unload eventloop]
- }
-}