Handling Errors/Error on Non-existing rc file [ System tests ]

FUNCTION

When given a non-existing .rc file, ROBODc should at least report the name of the .rc file.

SOURCE

{
    my ($out, $err) = runrobo( '--rc foobar.rc' );
    like($err, qr/foobar/, 'should give an error message about foorbar.rc' );
}