Sha256: f5cf0038e64712b7db93f4cbe964b0c4dc1272f08f274ea51ba9a81042ff4819
Contents?: true
Size: 601 Bytes
Versions: 13
Compression:
Stored size: 601 Bytes
Contents
# frozen_string_literal: true RSpec.configure do |config| config.before(:each) do config.rspeckled_logger.debug("Before Each - Start - #{__FILE__}") ::Bullet.start_request if ::Bullet.enable? config.rspeckled_logger.debug("Before Each - End - #{__FILE__}") end config.after(:each) do config.rspeckled_logger.debug("After Each - Start - #{__FILE__}") if ::Bullet.enable? ::Bullet.perform_out_of_channel_notifications if ::Bullet.notification? ::Bullet.end_request end config.rspeckled_logger.debug("After Each - End - #{__FILE__}") end end
Version data entries
13 entries across 13 versions & 1 rubygems