1 # This might look like shell script, but it's actually -*- perl -*-
6 use Test::More qw(no_plan);
10 use HTML::Element::Library;
12 # this is a simpler call to iter2()
14 my $root = 't/html/dual_iter';
16 my $tree = HTML::TreeBuilder->new_from_file("$root.html");
18 my $dl = $tree->look_down(id => 'service_plan');
22 ['the pros' => 'never have to worry about service again'],
23 ['the cons' => 'upfront extra charge on purchase'],
24 ['our choice' => 'go with the extended service plan']
30 wrapper_data => \@items,
35 # only keep the last 2 dts and dds
36 my @content_list = $container->content_list;
37 $container->splice_content(0, @content_list - 2);
42 my ($container, @item_elems) = @_;
43 $container->unshift_content(@item_elems);
50 my $generated_html = ptree($tree, "$root.gen");
52 is ($generated_html, File::Slurp::read_file("$root.exp"),
53 "HTML for generated li");