We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7fa68d commit afc0456Copy full SHA for afc0456
1 file changed
test/integration/redis_test.rb
@@ -0,0 +1,11 @@
1
+require 'test_helper'
2
+
3
+class RedisTest < ActionDispatch::IntegrationTest
4
+ test 'checks redis is working' do
5
+ redis = Redis.new(url: TeSS::Config.redis_url)
6
7
+ redis.set('test123xyz', 'hello')
8
9
+ assert_equal 'hello', redis.get('test123xyz')
10
+ end
11
+end
0 commit comments