source: trunk/LATMOS-Accounts/t/scripts.pl @ 1281

Last change on this file since 1281 was 1046, checked in by nanardon, 12 years ago
  • make test really optional
File size: 191 bytes
Line 
1use strict;
2use warnings;
3use Test::More;
4
5eval "use Test::Script";
6plan skip_all => 'Test::Script required' if $@;
7
8plan tests => scalar(@ARGV);
9
10foreach(@ARGV) {
11    script_compiles($_);
12}
Note: See TracBrowser for help on using the repository browser.