Skip to content

Commit

Permalink
added Module::Build support
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianh committed Jun 18, 2004
1 parent ea75be2 commit e63fc61
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 55 deletions.
25 changes: 25 additions & 0 deletions modules/Test/Test-Class/Build.PL
@@ -0,0 +1,25 @@
use Module::Build;

my $build = Module::Build->new(
module_name => 'Test::Class',
license => 'perl',
requires => {
'perl' => '5.6.1',
},
build_requires => {
Attribute::Handlers => 0.77,
Class::ISA => 0.32,
IO::File => 1.08,
Storable => 2.04,
Test::Builder => 0.16,
Test::Builder::Tester => 0.09,
Test::Differences => 0.43,
Test::Exception => 0.10,
Test::More => 0.44,
Devel::Symdump => 2.03,
},
create_makefile_pl => 'traditional',
create_readme => 1,
sign => 1,
);
$build->create_build_script;
3 changes: 3 additions & 0 deletions modules/Test/Test-Class/Changes
@@ -1,5 +1,8 @@
Revision history for Perl extension Test::Class.

0.06_7
- Added Module::Build support

0.06_6
- Fixed bogus test failures under MSWin32

Expand Down
19 changes: 12 additions & 7 deletions modules/Test/Test-Class/MANIFEST.SKIP
@@ -1,11 +1,16 @@
\.DS_Store$
^_build/
^blib/
^blibdirs$
^Build$
^examples
^todo
^Makefile$
^MANIFEST.SKIP$
^blib
^pm_to_blib
^pm_to_blib$
^Test-Class-
^todo
\.bak$
\.DS_Store$
\.old$
\.svn
Makefile.old
Makefile$
^Test-Class-
.svn
Makefile.old
22 changes: 0 additions & 22 deletions modules/Test/Test-Class/Makefile.PL

This file was deleted.

25 changes: 0 additions & 25 deletions modules/Test/Test-Class/README
@@ -1,25 +0,0 @@
Test::Class
===========

Test::Class provides a simple way of creating classes and objects to
test your code in an xUnit style.

Built using Test::Builder it is designing to work with other
Test::Builder based modules (Test::More, Test::Differences,
Test::Exception, etc.)

INSTALLATION

To install this module type the following:

perl Makefile.PL
make
make test
make install

COPYRIGHT AND LICENCE

Copyright 2002-2004 Adrian Howard, All Rights Reserved.

This program is free software; you can redistribute it
and/or modify it under the same terms as Perl itself.
2 changes: 1 addition & 1 deletion modules/Test/Test-Class/lib/Test/Class.pm
Expand Up @@ -14,7 +14,7 @@ use Test::Builder;
use Test::Class::MethodInfo;


our $VERSION = '0.06_6';
our $VERSION = '0.06_7';


use constant NO_PLAN => "no_plan";
Expand Down

0 comments on commit e63fc61

Please sign in to comment.