oga/benchmark/lexer/big_xml_time.rb

10 lines
179 B
Ruby
Raw Normal View History

2014-05-01 11:08:44 +00:00
require_relative '../benchmark_helper'
2014-04-29 12:48:36 +00:00
2014-05-01 11:08:44 +00:00
xml = read_big_xml
2014-04-29 12:48:36 +00:00
Benchmark.bmbm(10) do |bench|
bench.report '10MB of XML' do
2014-04-30 07:28:28 +00:00
Oga::XML::Lexer.new(xml).advance { |tok| }
2014-04-29 12:48:36 +00:00
end
end