oga/benchmark/parser/html.rb

10 lines
162 B
Ruby
Raw Normal View History

2014-05-01 11:08:44 +00:00
require_relative '../benchmark_helper'
2014-04-10 08:05:04 +00:00
2014-05-01 11:08:44 +00:00
html = read_html
2014-04-10 08:05:04 +00:00
Benchmark.ips do |bench|
bench.report 'parse HTML' do
Oga::HTML::Parser.new(html).parse
end
end