Codebase list libtest-inter-perl / a36c9f9
[svn-upgrade] new version libtest-inter-perl (1.03) Angel Abad Contreras 12 years ago
7 changed file(s) with 12 addition(s) and 9 deletion(s). Raw diff Collapse all Expand all
1212
1313 my $build = Module::Build->new(
1414 license => 'perl',
15 dist_version => '1.02',
15 dist_version => '1.03',
1616 dist_author => 'Sullivan Beck <sbeck@cpan.org>',
1717 module_name => 'Test::Inter',
1818 dist_abstract => 'framework for more readable interactive test scripts',
88 Added 'width' method.
99 Updated some tests which did not run correctly with perl 5.015. Renee Baecker
1010
11 Version 1.03
11 Version 1.03 2011-06-28
12 Missed one of the tests that fail with perl 5.015.
13
14 Version 1.04
1212 provides:
1313 Test::Inter:
1414 file: lib/Test/Inter.pm
15 version: 1.02
15 version: 1.03
1616 requires:
1717 File::Basename: 0
1818 IO::File: 0
1919 perl: 5.004
2020 resources:
2121 license: http://dev.perl.org/licenses/
22 version: 1.02
22 version: 1.03
1010
1111 WriteMakefile(
1212 NAME => 'Test::Inter',
13 VERSION => '1.02',
13 VERSION => '1.03',
1414 ($] >= 5.004
1515 ? (ABSTRACT=>'framework for more readable interactive test scripts',
1616 AUTHOR =>'Sullivan Beck (sbeck@cpan.org)')
00 package Test::Inter;
1 # Copyright (c) 2010-2010 Sullivan Beck. All rights reserved.
1 # Copyright (c) 2010-2011 Sullivan Beck. All rights reserved.
22 # This program is free software; you can redistribute it and/or modify it
33 # under the same terms as Perl itself.
44
1212 use IO::File;
1313
1414 our($VERSION);
15 $VERSION = '1.02';
15 $VERSION = '1.03';
1616
1717 ###############################################################################
1818 # BASE METHODS
0 # Copyright (c) 2010-2010 Sullivan Beck. All rights reserved.
0 # Copyright (c) 2010-2011 Sullivan Beck. All rights reserved.
11 # This program is free software; you can redistribute it and/or modify it
22 # under the same terms as Perl itself.
33
99 $o = new Test::Inter;
1010 }
1111
12 BEGIN { $o->use_ok('5.015','forbid'); }
12 BEGIN { $o->use_ok('7.001','forbid'); }
1313 BEGIN { $o->use_ok('Config','myconfig'); }
1414 BEGIN { $o->use_ok('Storable',1.01,'dclone'); }
1515