From d43d01cb4a4df16198bac2e6b7024bb690dd536e Mon Sep 17 00:00:00 2001 From: steve Date: Sat, 24 Jun 2006 20:19:17 +0000 Subject: [PATCH] 2006-06-24 20:19:17 by steve Test hooks are executable --- tests/plugin-checks.t | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/plugin-checks.t b/tests/plugin-checks.t index 53e0385..cc91329 100644 --- a/tests/plugin-checks.t +++ b/tests/plugin-checks.t @@ -5,7 +5,7 @@ # # Steve # -- -# $Id: plugin-checks.t,v 1.5 2006-06-24 20:18:27 steve Exp $ +# $Id: plugin-checks.t,v 1.6 2006-06-24 20:19:17 steve Exp $ # @@ -37,11 +37,14 @@ sub testPlugins if ( -f $file ) { + ok( -x $file, "File is executable" ); + # # Make sure the file is OK # my $result = testFile( $file ); is( $result, 0, " File contains no mention of the config hash" ); + } }