NAME

Test::ExistsExecutable - test if executable exist

SYNOPSIS

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

# or

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

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

DESCRIPTION

Test::ExistsExecutable tests if executable exist

SOURCE AVAILABILITY

This source is in Github:

http://github.com/dann/

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.