2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-07 12:02:53 +08:00
discourse/spec/helpers/redis_snapshot_helper.rb
2022-07-18 14:21:56 +02:00

13 lines
239 B
Ruby

# frozen_string_literal: true
module RedisSnapshotHelper
def use_redis_snapshotting
before(:each) do
RedisSnapshot.begin_faux_transaction
end
after(:each) do
RedisSnapshot.end_faux_transaction
end
end
end