Basics/Option help [ System tests ]

FUNCTION

Test the option --help.

SOURCE

{
    my ( $out, $err ) = runrobo('--help');
    like( $out, qr/ROBODoc Version/, '--help should print version number' );
    is( $err, '', '... and no error' );
}