oga/benchmark/lexer/big_xml_time.rb

11 lines
244 B
Ruby
Raw Normal View History

2014-04-29 12:48:36 +00:00
require_relative '../../lib/oga'
require 'benchmark'
xml = File.read(File.expand_path('../../fixtures/big.xml', __FILE__))
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