File: xmlxpath_30lang.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 (22 lines) | stat: -rw-r--r-- 467 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
# $Id: xmlxpath_30lang.t,v 1.1 2003/12/04 22:46:57 mrodrigu Exp $

use Test;
plan( tests => 4);
use XML::DOM::XPath;
ok(1);

my $parser= XML::DOM::Parser->new;
my $t= $parser->parse( \*DATA); 
ok( $t);

my @en = $t->findnodes( '//*[lang("en")]');
ok(@en, 2);

my @de = $t->findnodes( '//content[lang("de")]');
ok(@de, 1);

__DATA__
<page xml:lang="en">
  <content>Here we go...</content>
  <content xml:lang="de">und hier deutschsprachiger Text :-)</content>
</page>