Class: RSpec::Memory::Allocation

Inherits:
Struct
  • Object
show all
Defined in:
lib/rspec/memory/trace.rb

Constant Summary collapse

SLOT_SIZE =
40

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#countObject

Returns the value of attribute count

Returns:

  • (Object)

    the current value of count



25
26
27
# File 'lib/rspec/memory/trace.rb', line 25

def count
  @count
end

#sizeObject

Returns the value of attribute size

Returns:

  • (Object)

    the current value of size



25
26
27
# File 'lib/rspec/memory/trace.rb', line 25

def size
  @size
end

Class Method Details

.default_hashObject



35
36
37
# File 'lib/rspec/memory/trace.rb', line 35

def self.default_hash
	Hash.new{|h,k| h[k] = Allocation.new(0, 0)}
end

Instance Method Details

#<<(object) ⇒ Object



28
29
30
31
32
33
# File 'lib/rspec/memory/trace.rb', line 28

def << object
	self.count += 1
	
	# We don't want to force specs to take the slot size into account.
	self.size += ObjectSpace.memsize_of(object) - SLOT_SIZE
end