require "xml" require 'test/unit' class TestXPathExpression < Test::Unit::TestCase def setup xp = XML::Parser.string('onetwo') @doc = xp.parse end def teardown @doc = nil end def nodes expr = XML::XPath::Expression.compile('/ruby_array/fixnum') @doc.find(expr) 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_raise(TypeError) do set = @doc.find(999) end assert_equal('Argument should be an intance of a String or XPath::Expression', error.to_s) end end