oga/benchmark/xml/parser/html_bench.rb

18 lines
244 B
Ruby
Raw Normal View History

require_relative '../../benchmark_helper'
2014-04-10 08:05:04 +00:00
require 'nokogiri'
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 'Oga' do
Oga.parse_html(html)
end
bench.report 'Nokogiri' do
Nokogiri::HTML(html)
2014-04-10 08:05:04 +00:00
end
bench.compare!
2014-04-10 08:05:04 +00:00
end