Sha256: dfbc9c2eabb95e406f936f411b045404bef182352e129e3e857e0f3795db8d81

Contents?: true

Size: 649 Bytes

Versions: 47

Compression:

Stored size: 649 Bytes

Contents

require 'spec_helper'

# These tests show the memory leak that is currently in Active Admin. They
# are all marked as pending until they pass. To work on them, comment out the
# pending method call in #it_should_not_leak
describe "Memory Leak" do

  def count_instances_of(klass)
    ObjectSpace.each_object(klass) { }
  end

  def self.it_should_not_leak(klass)
    it "should not leak #{klass}" do
      GC.start

      count = count_instances_of(klass)

      load_defaults!
      GC.start

      count_instances_of(klass).should <= count
    end
  end

  it_should_not_leak ActiveAdmin::Namespace
  it_should_not_leak ActiveAdmin::Resource

end

Version data entries

47 entries across 47 versions & 2 rubygems

Version Path
lalala-4.0.0.dev.59 vendor/deps/active_admin/spec/integration/memory_spec.rb
lalala-4.0.0.dev.58 vendor/deps/active_admin/spec/integration/memory_spec.rb
lalala-4.0.0.dev.57 vendor/deps/active_admin/spec/integration/memory_spec.rb
lalala-4.0.0.dev.56 vendor/deps/active_admin/spec/integration/memory_spec.rb
lalala-4.0.0.dev.50 vendor/deps/active_admin/spec/integration/memory_spec.rb
lalala-4.0.0.dev.46 vendor/deps/active_admin/spec/integration/memory_spec.rb
activeadmin-0.5.1 spec/integration/memory_spec.rb