oga/benchmark/xml/parser/html_bench.rb

10 lines
165 B
Ruby

require_relative '../../benchmark_helper'
html = read_html
Benchmark.ips do |bench|
bench.report 'parse HTML' do
Oga::HTML::Parser.new(html).parse
end
end