diff options
Diffstat (limited to 'plugins/redis/tests')
-rw-r--r-- | plugins/redis/tests/configs/.rr-redis.yaml | 25 | ||||
-rw-r--r-- | plugins/redis/tests/redis_plugin_tests.go | 1 |
2 files changed, 26 insertions, 0 deletions
diff --git a/plugins/redis/tests/configs/.rr-redis.yaml b/plugins/redis/tests/configs/.rr-redis.yaml new file mode 100644 index 00000000..52198a35 --- /dev/null +++ b/plugins/redis/tests/configs/.rr-redis.yaml @@ -0,0 +1,25 @@ +redis: + - cluster: + addr: + - 'localhost:6379' + db: 0 + master: null + password: '' + - universal: + addr: + - 'localhost:6379' + db: 0 + master: null + password: '' + - default: + addr: + - 'localhost:6379' + db: 0 + master: null + password: '' + - sentinel: + addr: + - 'localhost:6379' + db: 0 + master: null + password: ''
\ No newline at end of file diff --git a/plugins/redis/tests/redis_plugin_tests.go b/plugins/redis/tests/redis_plugin_tests.go new file mode 100644 index 00000000..ca8701d2 --- /dev/null +++ b/plugins/redis/tests/redis_plugin_tests.go @@ -0,0 +1 @@ +package tests |