Sha256: dd3226a7d231762b618d8cb10a15e6065ea516f77831ece5d98b36462c44635a

Contents?: true

Size: 929 Bytes

Versions: 4

Compression:

Stored size: 929 Bytes

Contents

# encoding: UTF-8

require './test_helper'


class TestXPathExpression < Minitest::Test
  def setup
    xp = XML::Parser.string('<ruby_array uga="booga" foo="bar"><fixnum>one</fixnum><fixnum>two</fixnum></ruby_array>')
    @doc = xp.parse
  end
  
  def teardown
    @doc = nil
  end

  def test_nodes
    expr = XML::XPath::Expression.compile('/ruby_array/fixnum')
    set = @doc.find(expr)
    assert_instance_of(XML::XPath::Object, set)
    assert_equal(2, set.size)
  end

  def test_find_class
    expr = XML::XPath::Expression.new('/ruby_array/fixnum')
    set = @doc.find(expr)
    assert_instance_of(XML::XPath::Object, set)
    assert_equal(2, set.size)
  end

  def test_find_invalid
    error = assert_raises(TypeError) do
      set = @doc.find(999)
    end
    assert_equal('Argument should be an instance of a String or XPath::Expression',
                 error.to_s)
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
libxml-ruby-3.0.0-x64-mingw32 test/tc_xpath_expression.rb
libxml-ruby-3.0.0 test/tc_xpath_expression.rb
libxml-ruby-2.9.0-x64-mingw32 test/tc_xpath_expression.rb
libxml-ruby-2.9.0 test/tc_xpath_expression.rb