summaryrefslogtreecommitdiff
path: root/t/01-basic.t
blob: 305b67b2dc76b75102e46b4b1f1fef1f148f2ba0 (plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!perl 
package BasicTransform;{ 
 use Tree::Transform;
 use strict;
 use warnings;
 
 tree_rule match => '/'action => sub {
     return 'root'$_[0]->apply_rules;
 };
 
 tree_rule match => '*'action => sub {
     return $_[0]->it->name, $_[0]->apply_rules;
 }
 
}
 
package OtherTransform;{ 
 use Tree::Transform;
 use strict;
 use warnings;
 
 default_rules;
 
 tree_rule match => 'coso1'action => sub {
     return 'coso1';
 };
 
 tree_rule match => 'base/coso2'action => sub {
     return 'coso2';
 }
 
}
 
package main; 
use Test::Most qw(no_plan die);
use strict;
use warnings;
use Tree::DAG_Node::XPath;
 
sub Tree::DAG_Node::XPath::Root::xpath_get_root_node { return $_[0] }
 
my $tree=Tree::DAG_Node::XPath->new();
$tree->name('base');
$tree->new_daughter->name("coso$_"for 1..5;
 
{
my $trans=BasicTransform->new();
my @results=$trans->transform($tree);
is_deeply \@results,[qw(root base coso1 coso2 coso3 coso4 coso5)];
}
 
{
my $trans=OtherTransform->new();
my @results=$trans->transform($tree);
is_deeply \@results,[qw(coso1 coso2)];
}