mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 12:42:57 +08:00
22 lines
380 B
Ruby
22 lines
380 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module RedisSnapshotHelper
|
||
|
def use_redis_snapshotting
|
||
|
before(:all) do
|
||
|
RedisSnapshot.begin_faux_transaction
|
||
|
end
|
||
|
|
||
|
after(:all) do
|
||
|
RedisSnapshot.end_faux_transaction
|
||
|
end
|
||
|
|
||
|
before(:each) do
|
||
|
RedisSnapshot.begin_faux_transaction
|
||
|
end
|
||
|
|
||
|
after(:each) do
|
||
|
RedisSnapshot.end_faux_transaction
|
||
|
end
|
||
|
end
|
||
|
end
|