Basics/Option multidoc [ System tests ]

FUNCTION

Test --multidoc for html output format. (Multidoc for other modes does not make much sense). We create one source file with a simple header and create multidoc

SOURCE

{
    add_source( "test.c", $source );
    my ( $out, $err ) = runrobo(qw(--src Src --doc Doc --multidoc --html));
    # expected results:
    is( $out, '', 'No ouput' );
    is( $err, '', '... and no error' );
    file_exists_ok( "Doc/test_c.html", 'there should be documentation' );
    file_exists_ok( "Doc/robodoc.css", 'and a stylesheet' );

    clean();
}