NAME

Test::ExistsExecutable - skips tests unless executable exists

SYNOPSIS

use Test::More tests => 1;
use Test::ExistsExecutable qw(
    /usr/bin/rsync
    perl
);
use_ok 'Mouse';

# or

use Test::More tests => 1;
use Test::ExistsExecutable;

test_exists_executable '/bin/sh';
test_exists_executable 'perl';
ok 1;

DESCRIPTION

Test::ExistsExecutable checks if an executable exist and skips the test if it does not. The intent is to avoid needing to write this sort of boilerplate code:

Test::More;
BEGIN {
    do_i_have_all_my_optional_deps() ? plan skip_all : plan tests => 42
}

INTERFACE

Both Test::ExistsExecutable import method and test_exists_executable method take the name of a program or the file path of executable. It checks if the program exists and is executable.

SOURCE AVAILABILITY

This source is in Github:

http://github.com/dann/p5-test-existsexecutable

AUTHOR

dann <techmemo@gmail.com>

SEE ALSO

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.