oga/benchmark/lexer/bench_html.rb

12 lines
259 B
Ruby
Raw Normal View History

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