# File lib/Borges/TestCase/StateRegistryTest.rb, line 48
  def disabled_test_garbage_collection
    a = ValueHolder.new(1)

    @registry.register(a)

    snap1 = @registry.snapshot

    GC.start

    assert_equal(1, @registry.size)

    a = nil

    GC.start

    # Currently no simple way to test this...
    # TODO: Add ruby-talk reference
    assert_equal(0, @registry.size)
  end