"Fossies" - the Fresh Open Source Software Archive

Member "checkbot-1.80/t/test.t" (28 Oct 2006, 257 Bytes) of package /linux/www/old/checkbot-1.80.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Perl source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 #!/usr/bin/env perl -w
    2 use strict;
    3 use Test;
    4 
    5 BEGIN { plan tests => 1 }
    6 
    7 # Testing the executable is hard, but I suppose we can at least try to
    8 # run the to be installed Checkbot to see if things work out ok.
    9 
   10 ok(not system('blib/script/checkbot'));
   11 
   12 exit;