mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 15:25:35 +08:00
10 lines
213 B
Ruby
10 lines
213 B
Ruby
# frozen_string_literal: true
|
|
|
|
module RedisSnapshotHelper
|
|
def use_redis_snapshotting
|
|
before(:each) { RedisSnapshot.begin_faux_transaction }
|
|
|
|
after(:each) { RedisSnapshot.end_faux_transaction }
|
|
end
|
|
end
|