Sha256: a5f53e5b9fad9edef65f6ca75f1d7ad4a8fef5fdb9f5c188a2e37e9909673f7a
Contents?: true
Size: 176 Bytes
Versions: 30
Compression:
Stored size: 176 Bytes
Contents
# Delaying garbage collection to the end of tests RSpec.configure do |config| config.before(:each) do GC.disable end config.after(:each) do GC.enable end end
Version data entries
30 entries across 30 versions & 1 rubygems