File: matches.t

package info (click to toggle)
libhtml-treebuilder-libxml-perl 0.28-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 264 kB
  • sloc: perl: 533; makefile: 2; sh: 1
file content (20 lines) | stat: -rw-r--r-- 352 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use strict;
use warnings;
use Test::More;
use HTML::TreeBuilder::LibXML;
use Data::Dumper;



my $tree = HTML::TreeBuilder::LibXML->new_from_content('<p class="foo">bar</p>');
my ($el) = $tree->guts;


is $el->matches('//p[@class="foo"]'), 1, 'matches - positive';
is $el->matches('//p[@class="bar"]'), undef, 'matches - negative';



 

done_testing;