oga/benchmark/css/parser/parser_bench.rb

10 lines
199 B
Ruby
Raw Normal View History

2015-02-13 08:36:24 +00:00
require_relative '../../benchmark_helper'
css = 'foo bar bar.some_class element#with_id[title="Foo"]'
Benchmark.ips do |bench|
bench.report 'CSS' do
Oga::CSS::Parser.new(css).parse
end
end