The test checks, what happens, if there is no section instruction in opt:show.
Situation A: no section, but there are data - we should display the neighbourhood.
>>>>templates/test.tpl
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<opt:root>
<opt:show name="sect">
Foo:
Eof
</opt:show>
</opt:root>
>>>>expected.txt
OUTPUT
>>>>result.txt
Foo:
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'),
);