Update of /cvsroot/module-build/Module-Build/t
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4111/t
Modified Files:
basic.t
Log Message:
Abstract all this preamble stuff out to a support module
Index: basic.t
===================================================================
RCS file: /cvsroot/module-build/Module-Build/t/basic.t,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -d -r1.49 -r1.50
--- basic.t 29 Dec 2005 01:45:13 -0000 1.49
+++ basic.t 29 Dec 2005 03:01:48 -0000 1.50
@@ -1,15 +1,8 @@
#!/usr/bin/perl -w
use strict;
-use File::Spec ();
-
-BEGIN {
- my $common_pl = File::Spec->catfile( 't', 'common.pl' );
- require $common_pl;
-}
-
-use Test::More tests => 55;
-
+use lib 't/lib';
+use MBTest tests => 55;
use Cwd ();
my $cwd = Cwd::cwd;
|