From: Vincent Pit Date: Thu, 29 Jul 2010 11:07:45 +0000 (+0200) Subject: Add portability files test X-Git-Tag: v0.02~25 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLaTeX-TikZ.git;a=commitdiff_plain;h=f848e6464bc46d19e02b827c32e0c0c370bce39f;hp=06d4a421cd9d9f4698b1901f6caac0a42dfc81b4 Add portability files test --- diff --git a/MANIFEST b/MANIFEST index e15d1c3..807c8ab 100644 --- a/MANIFEST +++ b/MANIFEST @@ -49,3 +49,4 @@ t/23-pattern.t t/30-functor.t t/91-pod.t t/92-pod-coverage.t +t/95-portability-files.t diff --git a/t/95-portability-files.t b/t/95-portability-files.t new file mode 100644 index 0000000..ab541f3 --- /dev/null +++ b/t/95-portability-files.t @@ -0,0 +1,10 @@ +#!perl -T + +use strict; +use warnings; + +use Test::More; + +eval "use Test::Portability::Files"; +plan skip_all => "Test::Portability::Files required for testing filenames portability" if $@; +run_tests();