From c045de5915c8735e9a2f842cb0f8c190b154ea55 Mon Sep 17 00:00:00 2001 From: Tony Cook Date: Mon, 10 Dec 2007 04:27:20 +0000 Subject: [PATCH] test that Parse::RecDescent is loadable to avoid problems like https://rt.cpan.org/Ticket/Display.html?id=31320 --- t/t82inline.t | 3 +++ 1 file changed, 3 insertions(+) diff --git a/t/t82inline.t b/t/t82inline.t index d0fc5bb3..da61334c 100644 --- a/t/t82inline.t +++ b/t/t82inline.t @@ -6,6 +6,9 @@ use Test::More; eval "require Inline::C;"; plan skip_all => "Inline required for testing API" if $@; +eval "require Parse::RecDescent;"; +plan skip_all => "Could not load Parse::RecDescent" if $@; + use Cwd 'getcwd'; plan skip_all => "Inline won't work in directories with spaces" if getcwd() =~ / /; -- 2.39.5