Class: RSpec::Memory::Allocation
- Inherits:
-
Struct
- Object
- Struct
- RSpec::Memory::Allocation
- Defined in:
- lib/rspec/memory/trace.rb
Constant Summary collapse
- SLOT_SIZE =
ObjectSpace.memsize_of(Object.new)
Instance Attribute Summary collapse
-
#count ⇒ Object
Returns the value of attribute count.
-
#size ⇒ Object
Returns the value of attribute size.
Class Method Summary collapse
Instance Method Summary collapse
Instance Attribute Details
#count ⇒ Object
Returns the value of attribute count
25 26 27 |
# File 'lib/rspec/memory/trace.rb', line 25 def count @count end |
#size ⇒ Object
Returns the value of attribute size
25 26 27 |
# File 'lib/rspec/memory/trace.rb', line 25 def size @size end |
Class Method Details
.default_hash ⇒ Object
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 |