123456789101112131415161718 #!/usr/bin/perl# Compile testing for jsanuse strict;BEGIN { $| = 1; $^W = 1;}use Test::More tests => 2;use Test::Script;# Does the module loaduse_ok('JSAN::Shell');# Does the jsan script compilescript_compiles( 'script/jsan' );
#!/usr/bin/perl
# Compile testing for jsan
use
strict;
BEGIN {
$| = 1;
$^W = 1;
}
Test::More
tests
=> 2;
Test::Script;
# Does the module load
use_ok(
'JSAN::Shell'
);
# Does the jsan script compile
script_compiles(
'script/jsan'