MYMETA.yml
_build/
blib/
+unit*
script_files => 'script/',
doc_files => \%doc_files,
install_path => { 'doc' => '/usr/share/doc/msva' },
+ recursive_test_files => 1,
);
$cm->add_build_element('doc');
$cm->create_build_script;
+++ /dev/null
-#!/bin/sh
-
-# this script exists so that you can launch the msva perl scripts
-# directly from your development environment without having to install
-# anything.
-
-# it appears to be necessary because of some weirdness in how
-# HTTP::Server::Simple interacts with Net::Server -- otherwise, i
-# wouldn't need to shuffle all these files around.
-
-# Author: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
-# Date: 2010-03-11 14:53:07-0500
-
-dir=$(dirname "$0")
-cmd="$1"
-shift
-exec perl -wT -I"$dir" "$dir"/"$cmd" "$@"
+++ /dev/null
-#!/usr/bin/perl
-use strict;
-
-use TAP::Harness;
-use File::Find;
-use FindBin;
-my $BINDIR;
-BEGIN { $BINDIR = $FindBin::Bin; }
-
-my @dirs = scalar(@ARGV) > 0 ? @ARGV : ($BINDIR);
-
-my @tests;
-
-sub wanted {
- push (@tests,$File::Find::name) if -f && m/.*\.t$/;
-}
-
-find(\&wanted, @dirs);
-
-@tests=sort @tests;
-
-print STDERR "found ",scalar(@tests)," tests\n";
-
-my $harness = TAP::Harness->new( { verbosity => 1,
- lib => [ $BINDIR.'/..'] });
-
-$harness->runtests(@tests);
-
-1;