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;