1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Benchmark::Memory::Job::IOOutput do
describe '#put_entry' do
it 'outputs onto the passed IO' do
entry = create_entry
io = StringIO.new
output = described_class.new(io)
output.put_entry(entry)
expect(io.string).not_to be_empty
end
end
def create_entry
Benchmark::Memory::Report::Entry.new(
'my super cool test',
create_measurement
)
end
def create_measurement
memsize = Benchmark::Memory::Measurement::Metric.new(
:memsize,
3_078_619,
1_539_309
)
objects = Benchmark::Memory::Measurement::Metric.new(
:objects,
2_936_123,
0
)
strings = Benchmark::Memory::Measurement::Metric.new(
:strings,
100,
99
)
Benchmark::Memory::Measurement.new(
strings: strings,
objects: objects,
memory: memsize
)
end
end
|