blob: 4e9bae9cd87cf5b3c6f8d67ac8fc45b4bdb8ec77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
*** Settings ***
Suite Setup Fuzzy Redis General Setup
Suite Teardown Fuzzy Redis General Teardown
Resource lib.robot
*** Variables ***
${REDIS_SCOPE} Suite
*** Test Cases ***
Fuzzy Add
Fuzzy Multimessage Add Test
Fuzzy Fuzzy
[Tags] isbroken
Fuzzy Multimessage Fuzzy Test
Fuzzy Delete
Fuzzy Multimessage Delete Test
Fuzzy Overwrite
Fuzzy Multimessage Overwrite Test
*** Keywords ***
Fuzzy Redis General Setup
Fuzzy Setup Generic siphash backend = "redis"; ${EMPTY}
Run Redis
Fuzzy Redis General Teardown
Normal Teardown
Shutdown Process With Children ${REDIS_PID}
Wait For Port ${SOCK_STREAM} ${LOCAL_ADDR} ${REDIS_PORT}
|