view tests/modules.sh @ 95:54ed399a35a0

Install the blog.steve.org.uk templates correctly.
author Steve Kemp <steve@steve.org.uk>
date Wed, 12 Dec 2007 16:45:15 +0000
parents 00ed5b99ccb0
children 5ea9f2d8bd8e
line wrap: on
line source

#!/bin/sh
#
#  Automatically attempt to create a test which ensures all the modules
# used in the code are availabe.
#
# Steve
# --
# http://www.steve.org.uk/
#
#

cat <<EOF
#!/usr/bin/perl -w -I..
#
#  Test that all the Perl modules we require are available.
#
#  This list is automatically generated by modules.sh
#
# Steve
# --
#

use Test::More qw( no_plan );

EOF


for i in `rgrep '^use ' .. | awk '{print $2}' | tr -d 
\;\(\) | sort | uniq`; \
    do \
     echo "BEGIN{ use_ok( '$i' ); }"; \
     echo "require_ok( '$i' );" ; \
     echo -e "\n" ; \
done