discourse/spec/helpers/redis_snapshot_helper.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
380 B
Ruby
Raw Normal View History

# 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