Skip to content

Commit be6e92f

Browse files
committed
Added 1 dummy test for valkey
Signed-off-by: Hanxi Zhang <hanxizh@amazon.com>
1 parent 242733c commit be6e92f

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

tests/unit/dummy-flaky.tcl

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
start_server {tags {"dummy"}} {
2+
test "dummy-flaky - normal failure" {
3+
r SET mykey myvalue
4+
assert_equal [r GET mykey] "wrongvalue"
5+
}
6+
7+
test "dummy-flaky - passing test" {
8+
r SET counter 0
9+
r INCR counter
10+
assert_equal [r GET counter] "1"
11+
}
12+
}

0 commit comments

Comments
 (0)