Update of /cvsroot/module-build/Module-Build/t
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13584/t
Modified Files:
destinations.t
Log Message:
Add some TODO tests
Index: destinations.t
===================================================================
RCS file: /cvsroot/module-build/Module-Build/t/destinations.t,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- destinations.t 23 Jun 2005 08:32:33 -0000 1.19
+++ destinations.t 28 Jun 2005 03:03:17 -0000 1.20
@@ -3,7 +3,7 @@
use lib 't/lib';
use strict;
-use Test::More tests => 66;
+use Test::More tests => 68;
use File::Spec ();
@@ -24,6 +24,12 @@
use Config;
use File::Spec::Functions qw( catdir splitdir );
+#########################
+
+TODO: {
+ local $TODO = 'Test PREFIX pass-thru to compat Makefile.PL';
+ ok 0, 'PREFIX';
+}
use Module::Build;
my $M = Module::Build->new_from_context;
@@ -172,6 +178,11 @@
}
+TODO: {
+ local $TODO = "install paths not defined.";
+ ok 0, '(bin|lib)doc install destination';
+}
+
sub test_prefix {
my ($prefix, $test_config) = @_;
|