in reply to Re^2: ExtUtils::MakeMaker : delcare a binary dependency
in thread ExtUtils::MakeMaker : delcare a binary dependency

That is how I do it, but it may also make sense to simply skip the test using something like this:

use Test::More; if( chrome_is_unavailable ) { plan skip_all => "Chrome / chromium not found/installed, skipping +test."; exit 0; }; plan tests => $test_count; ... done_testing();

Replies are listed 'Best First'.
Re^4: ExtUtils::MakeMaker : delcare a binary dependency
by bliako (Abbot) on Aug 22, 2023 at 08:39 UTC

    got it thanks