File: test_xml_xpath_and_xml_dom_xpath.t

package info (click to toggle)
libxml-dom-xpath-perl 0.14-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 240 kB
  • sloc: perl: 449; makefile: 2; xml: 1
file content (29 lines) | stat: -rw-r--r-- 546 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/perl -w
use strict;

# $Id: test_xml_xpath_and_xml_dom_xpath.t,v 1.2 2005/03/07 08:39:13 mrodrigu Exp $


use Test::More tests => 1;
use XML::DOM::XPath;

unless(eval{require XML::XPath}) { ok(1); exit; }

import XML::XPath; 

my $xml = <<EOF;
<?xml version="1.0" encoding="UTF-8"?>
<school>
<class>
<student name="joe"/>
<student/>
</class>
</school>
EOF

my $xp = XML::XPath->new($xml);		
my $exp = '/school/class/student/@name';				
my $nodeSet = $xp->find($exp);
is( $nodeSet->size(), 1, "using XML::XPath and XML::DOM::XPath");