The test checks the basic opt:show features.
>>>>templates/test.tpl
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<opt:root>
<opt:show name="sect">
Foo:
<opt:section>
{$sect.val1},{$sect.val2}
</opt:section>
Eof
</opt:show>
</opt:root>
>>>>expected.txt
OUTPUT
>>>>result.txt
Foo:
A,B
C,D
E,F
G,H
Eof
>>>>data.php
$view->sect = array(
array('val1' => 'A', 'val2' => 'B'),
array('val1' => 'C', 'val2' => 'D'),
array('val1' => 'E', 'val2' => 'F'),
array('val1' => 'G', 'val2' => 'H'),
);