require_relative '../benchmark_helper' simple = '

Hello world

' attributes = '

Hello world

' nested = '

Helloworld

' Benchmark.ips do |bench| bench.report 'text only' do Oga::XML::Lexer.new(simple).lex end bench.report 'text + attributes' do Oga::XML::Lexer.new(attributes).lex end bench.report 'text + children' do Oga::XML::Lexer.new(nested).lex end end