BEGIN {print "1..3\n";}
END {print "not ok 1\n" unless $loaded;}
use XML::XQL;
use XML::XQL::DOM;
use XML::XQL::Debug;
$loaded = 1;
print "ok 1\n";
my $test = 1;
sub assert_ok
{
my $ok = shift;
print "not " unless $ok;
++$test;
print "ok $test\n";
$ok;
}
sub assert_output
{
my $str = shift;
$^W=0;
my $data = join('',);
#print "{{$data}}\n{{$str}}\n";
assert_ok ($str eq $data);
}
#Test 2
$dom = new XML::DOM::Parser;
my $str = <
1993-02-14
P001
USA
HNLLHIWP
0002
USA
45 HOLOMOA STREET
END
my $doc = $dom->parse ($str);
assert_ok ($doc);
#@result = XML::XQL::solve ('DATA/CKL[@cklAttr $eq$ "cklAttrVal2"]', $doc);
#@result = XML::XQL::solve ('//.[attribute()!count() = 1]', $doc);
# err @result = XML::XQL::solve ('DATA/CKL[attribute(2, 1)!count() = 1]', $doc);
#@result = XML::XQL::solve ('//.[false()!textNode() = 1]', $doc);
#@result = XML::XQL::solve ('//.[.!value() $blue$ date("1993/02/14")]', $doc);
#?@result = XML::XQL::solve ('DATA/CKL[@cklAttr $eq$ "cklAttrVal2"]', $doc);
@result = XML::XQL::solve ('DATA/CKL', $doc);
$result = XML::XQL::Debug::str (\@result);
#print $result;
assert_output ($result);
__DATA__
-
P001
USA
HNLLHIWP
-
0002
USA
45 HOLOMOA STREET