12345678910111213 #!/usr/bin/perl -wuse strict;use Test::More tests => 1;use Shell::Command;pass();exit 0;fail("This test should never be run if Shell::Command is not interfering ". "with exit");
#!/usr/bin/perl -w
use
strict;
Test::More
tests
=> 1;
Shell::Command;
pass();
exit
0;
fail(
"This test should never be run if Shell::Command is not interfering "
.
"with exit"
);