From abc9a802404902718dc808fdce36f226533f02de Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Fri, 7 Jan 2011 08:07:11 +0000 Subject: get_file_name returns a full path, which Install does not like --- t/00distribution.t | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 t/00distribution.t (limited to 't') diff --git a/t/00distribution.t b/t/00distribution.t new file mode 100755 index 0000000..3286c0e --- /dev/null +++ b/t/00distribution.t @@ -0,0 +1,15 @@ +#!/usr/bin/perl +# $Id: 00distribution.t 1723 2006-10-17 13:53:27Z warly $ + +use Test::More; + +BEGIN { + eval { + require Test::Distribution; + }; + if($@) { + plan skip_all => 'Test::Distribution not installed'; + } else { + import Test::Distribution only => [ qw/use pod description/ ]; + } +} -- cgit v1.2.1