oga/benchmark/lexer/bench_html_time.rb

12 lines
260 B
Ruby

require_relative '../../lib/oga'
require 'benchmark'
html = File.read(File.expand_path('../../fixtures/hrs.html', __FILE__))
lexer = Oga::XML::Lexer.new(:html => true)
Benchmark.bmbm(20) do |bench|
bench.report 'lex HTML' do
lexer.lex(html)
end
end