FUNCTION
Try several header with names that contain spaces. These should be accepted.
SOURCE
{
my $source = <<'EOF';
/****f* Test Foo Bar/Name With Spaces, And Anotherone,
* And One More, More
* NAME
* Test
* FUNCTION
* Test2
******
*/
EOF
add_source( "test.c", $source );
my ($out, $err) = runrobo( qw(--src Src --doc Doc --multidoc --test) );
is( $out, '', 'no output' );
is( $err, '', 'and no error' );
my $documentation = XMLin( 'Doc/test_c.xml' );
my $header = $documentation->{'header'};
is ( $header->{'name'}, 'Test Foo Bar/Name With Spaces', 'Header name' );
# clean();
}