diff --git a/benchmark/xml/parser/element_bench.rb b/benchmark/xml/parser/element_bench.rb deleted file mode 100644 index 7270b3d..0000000 --- a/benchmark/xml/parser/element_bench.rb +++ /dev/null @@ -1,19 +0,0 @@ -require_relative '../../benchmark_helper' - -simple = '
Hello world
' -attributes = 'Hello world
' -nested = 'Helloworld
' - -Benchmark.ips do |bench| - bench.report 'text only' do - Oga::XML::Parser.new(simple).parse - end - - bench.report 'text + attributes' do - Oga::XML::Parser.new(attributes).parse - end - - bench.report 'text + children' do - Oga::XML::Parser.new(nested).parse - end -end