summaryrefslogtreecommitdiff
path: root/t/01-basic.t
blob: c6b1e8a4c05333cc4b16462710b6231aa3a7ec46 (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
#!perl 
use Test::Most 'no_plan','die';
use strict;
use warnings;
use Tree::Template::Declare options => {builder => '+DAG_Node'};
use Data::Dumper;
 
my $tree=tree {
    node {
        name 'root';
        attribs name => 'none';
        node {
            name 'coso1';
            attribs name => 'coso_1';
            attribs other => 'some';
        };
        node {
            name 'coso2';
        };
    };
};
 
is_deeply($tree->tree_to_lol(),
          [['coso1'],['coso2'],'root'],
          'built the tree');
is_deeply(($tree->daughters)[0]->attributes,
          {name => 'coso_1'other => 'some'},
          'attributes');