We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcc0204 commit 67c32cbCopy full SHA for 67c32cb
Gemfile
@@ -54,5 +54,5 @@ gem "importmap-rails"
54
group :test do
55
gem "simplecov", require: false
56
gem "simplecov-cobertura"
57
- gem 'fakeredis'
+ gem "fakeredis"
58
end
test/test_helper.rb
@@ -23,10 +23,10 @@ class ActiveSupport::TestCase
23
24
# Use FakeRedis for testing if available, otherwise use real Redis
25
begin
26
- require 'fakeredis/minitest'
+ require "fakeredis/minitest"
27
puts "Using FakeRedis for testing"
28
rescue LoadError
29
puts "FakeRedis not available, using real Redis for testing"
30
- require 'redis'
31
- REDIS = Redis.new(url: ENV['REDIS_URL'] || 'redis://localhost:6379/1')
+ require "redis"
+ REDIS = Redis.new(url: ENV["REDIS_URL"] || "redis://localhost:6379/1")
32
0 commit comments