r68903 - in /branches/upstream/libtest-module-used-perl/current: ./ lib/Test/Module/ t/ testdata/

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Thu Feb 17 16:23:38 UTC 2011


Author: periapt-guest
Date: Thu Feb 17 16:22:46 2011
New Revision: 68903

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=68903
Log:
[svn-upgrade] new version libtest-module-used-perl (0.2.3)

Added:
    branches/upstream/libtest-module-used-perl/current/testdata/META2.yml
    branches/upstream/libtest-module-used-perl/current/testdata/META3.yml
    branches/upstream/libtest-module-used-perl/current/testdata/META4.yml
    branches/upstream/libtest-module-used-perl/current/testdata/META5.yml
Removed:
    branches/upstream/libtest-module-used-perl/current/testdata/META.yml2
    branches/upstream/libtest-module-used-perl/current/testdata/META.yml3
    branches/upstream/libtest-module-used-perl/current/testdata/META.yml4
    branches/upstream/libtest-module-used-perl/current/testdata/META.yml5
Modified:
    branches/upstream/libtest-module-used-perl/current/Changes
    branches/upstream/libtest-module-used-perl/current/MANIFEST
    branches/upstream/libtest-module-used-perl/current/META.yml
    branches/upstream/libtest-module-used-perl/current/lib/Test/Module/Used.pm
    branches/upstream/libtest-module-used-perl/current/t/002_default.t
    branches/upstream/libtest-module-used-perl/current/t/004_used_ok.t
    branches/upstream/libtest-module-used-perl/current/t/005_used_module.t
    branches/upstream/libtest-module-used-perl/current/t/006_read_meta_yml.t
    branches/upstream/libtest-module-used-perl/current/t/008_test_is_empty.t
    branches/upstream/libtest-module-used-perl/current/t/009_auto_get_exclude.t
    branches/upstream/libtest-module-used-perl/current/t/012_used_ok.t
    branches/upstream/libtest-module-used-perl/current/t/013_requires_ok.t
    branches/upstream/libtest-module-used-perl/current/t/014_requires_ok_fail.t
    branches/upstream/libtest-module-used-perl/current/t/015_used_ok_fail.t
    branches/upstream/libtest-module-used-perl/current/t/016_ok_fail1.t
    branches/upstream/libtest-module-used-perl/current/t/017_ok_fail2.t

Modified: branches/upstream/libtest-module-used-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-module-used-perl/current/Changes?rev=68903&op=diff
==============================================================================
--- branches/upstream/libtest-module-used-perl/current/Changes (original)
+++ branches/upstream/libtest-module-used-perl/current/Changes Thu Feb 17 16:22:46 2011
@@ -1,3 +1,5 @@
+0.2.3
+    - fix: tests are failed when using newer Parse::CPAN::Meta.
 0.2.2
     - version++
     - update year in copyright

Modified: branches/upstream/libtest-module-used-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-module-used-perl/current/MANIFEST?rev=68903&op=diff
==============================================================================
--- branches/upstream/libtest-module-used-perl/current/MANIFEST (original)
+++ branches/upstream/libtest-module-used-perl/current/MANIFEST Thu Feb 17 16:22:46 2011
@@ -35,10 +35,10 @@
 testdata/lib2/My/Test.pm
 testdata/META.json
 testdata/META.yml
-testdata/META.yml2
-testdata/META.yml3
-testdata/META.yml4
-testdata/META.yml5
+testdata/META2.yml
+testdata/META3.yml
+testdata/META4.yml
+testdata/META5.yml
 testdata/t/001_test.t
 testdata/t2/001_use_ok.t
 testdata/t2/lib/My/Test2.pm

Modified: branches/upstream/libtest-module-used-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-module-used-perl/current/META.yml?rev=68903&op=diff
==============================================================================
--- branches/upstream/libtest-module-used-perl/current/META.yml (original)
+++ branches/upstream/libtest-module-used-perl/current/META.yml Thu Feb 17 16:22:46 2011
@@ -32,4 +32,4 @@
 resources:
   license: http://dev.perl.org/licenses/
   repository: http://github.com/tsucchi/Test-Module-Used
-version: 0.2.2
+version: 0.2.3

Modified: branches/upstream/libtest-module-used-perl/current/lib/Test/Module/Used.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-module-used-perl/current/lib/Test/Module/Used.pm?rev=68903&op=diff
==============================================================================
--- branches/upstream/libtest-module-used-perl/current/lib/Test/Module/Used.pm (original)
+++ branches/upstream/libtest-module-used-perl/current/lib/Test/Module/Used.pm Thu Feb 17 16:22:46 2011
@@ -13,7 +13,7 @@
 use CPAN::Meta;
 use Carp;
 use 5.008;
-our $VERSION = '0.2.2';
+our $VERSION = '0.2.3';
 
 =head1 NAME
 

Modified: branches/upstream/libtest-module-used-perl/current/t/002_default.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-module-used-perl/current/t/002_default.t?rev=68903&op=diff
==============================================================================
--- branches/upstream/libtest-module-used-perl/current/t/002_default.t (original)
+++ branches/upstream/libtest-module-used-perl/current/t/002_default.t Thu Feb 17 16:22:46 2011
@@ -3,7 +3,6 @@
 use warnings;
 use Test::More tests => 4;
 use Test::Module::Used;
-
 my $used = Test::Module::Used->new();
 
 is_deeply($used->_test_dir, ['t']);#default directory for test

Modified: branches/upstream/libtest-module-used-perl/current/t/004_used_ok.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-module-used-perl/current/t/004_used_ok.t?rev=68903&op=diff
==============================================================================
--- branches/upstream/libtest-module-used-perl/current/t/004_used_ok.t (original)
+++ branches/upstream/libtest-module-used-perl/current/t/004_used_ok.t Thu Feb 17 16:22:46 2011
@@ -7,7 +7,7 @@
 my $used = Test::Module::Used->new(
     lib_dir    => [catfile('testdata', 'lib')],
     test_dir   => [catfile('testdata', 't')],
-    meta_file  => catfile('testdata', 'META.yml2'),
+    meta_file  => catfile('testdata', 'META2.yml'),
     exclude_in_testdir => ['SampleModule'],
 );
 

Modified: branches/upstream/libtest-module-used-perl/current/t/005_used_module.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-module-used-perl/current/t/005_used_module.t?rev=68903&op=diff
==============================================================================
--- branches/upstream/libtest-module-used-perl/current/t/005_used_module.t (original)
+++ branches/upstream/libtest-module-used-perl/current/t/005_used_module.t Thu Feb 17 16:22:46 2011
@@ -46,7 +46,7 @@
     test_dir  => [catfile('testdata', 't2')],
     test_lib_dir => [catfile('testdata', 't2', 'lib')],
     lib_dir   => [catfile('testdata', 'lib2')],
-    meta_file => catfile('testdata', 'META.yml3'),
+    meta_file => catfile('testdata', 'META3.yml'),
 );
 is_deeply([$used4->_test_files],   [catfile('testdata', 't2', '001_use_ok.t'), catfile('testdata', 't2', 'lib', 'My', 'Test2.pm')]);
 is_deeply([$used4->_remove_core($used4->_used_modules_in_test())], [qw(List::MoreUtils)]);

Modified: branches/upstream/libtest-module-used-perl/current/t/006_read_meta_yml.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-module-used-perl/current/t/006_read_meta_yml.t?rev=68903&op=diff
==============================================================================
--- branches/upstream/libtest-module-used-perl/current/t/006_read_meta_yml.t (original)
+++ branches/upstream/libtest-module-used-perl/current/t/006_read_meta_yml.t Thu Feb 17 16:22:46 2011
@@ -18,7 +18,7 @@
 is($used->_version, "5.008000");
 
 my $used2 = Test::Module::Used->new(
-    meta_file => catfile('testdata', 'META.yml2'),
+    meta_file => catfile('testdata', 'META2.yml'),
 );
 $used2->_read_meta();
 is_deeply( [$used2->_build_requires()],
@@ -30,7 +30,7 @@
 
 # exclude
 my $used3 = Test::Module::Used->new(
-    meta_file => catfile('testdata', 'META.yml2'),
+    meta_file => catfile('testdata', 'META2.yml'),
     exclude_in_build_requires => ['Test::Class'],
     exclude_in_requires       => ['Module::Used'],
 );

Modified: branches/upstream/libtest-module-used-perl/current/t/008_test_is_empty.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-module-used-perl/current/t/008_test_is_empty.t?rev=68903&op=diff
==============================================================================
--- branches/upstream/libtest-module-used-perl/current/t/008_test_is_empty.t (original)
+++ branches/upstream/libtest-module-used-perl/current/t/008_test_is_empty.t Thu Feb 17 16:22:46 2011
@@ -7,7 +7,7 @@
 my $used = Test::Module::Used->new(
     test_dir  => [catfile('testdata', 't2')],
     lib_dir   => [catfile('testdata', 'lib2')],
-    meta_file => catfile('testdata', 'META.yml3'),
+    meta_file => catfile('testdata', 'META3.yml'),
     exclude_in_testdir => ['Test::Module::Used'],
 );
 

Modified: branches/upstream/libtest-module-used-perl/current/t/009_auto_get_exclude.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-module-used-perl/current/t/009_auto_get_exclude.t?rev=68903&op=diff
==============================================================================
--- branches/upstream/libtest-module-used-perl/current/t/009_auto_get_exclude.t (original)
+++ branches/upstream/libtest-module-used-perl/current/t/009_auto_get_exclude.t Thu Feb 17 16:22:46 2011
@@ -8,7 +8,7 @@
 my $used = Test::Module::Used->new(
     test_dir  => [catfile('testdata', 't2')],
     lib_dir   => [catfile('testdata', 'lib2')],
-    meta_file => catfile('testdata', 'META.yml3'),
+    meta_file => catfile('testdata', 'META3.yml'),
 );
 
 
@@ -21,7 +21,7 @@
     test_dir  => [catfile('testdata', 't2')],
     lib_dir   => [catfile('testdata', 'lib2')],
     test_lib_dir => [catfile('testdata', 't2', 'lib')],
-    meta_file => catfile('testdata', 'META.yml3'),
+    meta_file => catfile('testdata', 'META3.yml'),
 );
 
 is_deeply([$used1->_packages_in($used1->_pm_files)], ['My::Test']);

Modified: branches/upstream/libtest-module-used-perl/current/t/012_used_ok.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-module-used-perl/current/t/012_used_ok.t?rev=68903&op=diff
==============================================================================
--- branches/upstream/libtest-module-used-perl/current/t/012_used_ok.t (original)
+++ branches/upstream/libtest-module-used-perl/current/t/012_used_ok.t Thu Feb 17 16:22:46 2011
@@ -8,7 +8,7 @@
 my $used = Test::Module::Used->new(
     test_dir  => [catdir('testdata', 't')],
     lib_dir   => [catdir('testdata', 'lib')],
-    meta_file => catfile('testdata', 'META.yml4'),
+    meta_file => catfile('testdata', 'META4.yml'),
 );
 
 # Plack is required in META.yml4 but not used in testdata/lib/SampleModule.pm and It's ok in used_ok()

Modified: branches/upstream/libtest-module-used-perl/current/t/013_requires_ok.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-module-used-perl/current/t/013_requires_ok.t?rev=68903&op=diff
==============================================================================
--- branches/upstream/libtest-module-used-perl/current/t/013_requires_ok.t (original)
+++ branches/upstream/libtest-module-used-perl/current/t/013_requires_ok.t Thu Feb 17 16:22:46 2011
@@ -8,7 +8,7 @@
 my $used = Test::Module::Used->new(
     test_dir  => [catdir('testdata', 't')],
     lib_dir   => [catdir('testdata', 'lib')],
-    meta_file => catfile('testdata', 'META.yml5'),
+    meta_file => catfile('testdata', 'META5.yml'),
 );
 
 # Module::Used is missing in META.yml but it's ok

Modified: branches/upstream/libtest-module-used-perl/current/t/014_requires_ok_fail.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-module-used-perl/current/t/014_requires_ok_fail.t?rev=68903&op=diff
==============================================================================
--- branches/upstream/libtest-module-used-perl/current/t/014_requires_ok_fail.t (original)
+++ branches/upstream/libtest-module-used-perl/current/t/014_requires_ok_fail.t Thu Feb 17 16:22:46 2011
@@ -11,7 +11,7 @@
 my $used = Test::Module::Used->new(
     test_dir  => [catdir('testdata', 't')],
     lib_dir   => [catdir('testdata', 'lib')],
-    meta_file => catfile('testdata', 'META.yml4'),
+    meta_file => catfile('testdata', 'META4.yml'),
 );
 
 

Modified: branches/upstream/libtest-module-used-perl/current/t/015_used_ok_fail.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-module-used-perl/current/t/015_used_ok_fail.t?rev=68903&op=diff
==============================================================================
--- branches/upstream/libtest-module-used-perl/current/t/015_used_ok_fail.t (original)
+++ branches/upstream/libtest-module-used-perl/current/t/015_used_ok_fail.t Thu Feb 17 16:22:46 2011
@@ -11,7 +11,7 @@
 my $used = Test::Module::Used->new(
     test_dir  => [catdir('testdata', 't')],
     lib_dir   => [catdir('testdata', 'lib')],
-    meta_file => catfile('testdata', 'META.yml5'),
+    meta_file => catfile('testdata', 'META5.yml'),
 );
 
 

Modified: branches/upstream/libtest-module-used-perl/current/t/016_ok_fail1.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-module-used-perl/current/t/016_ok_fail1.t?rev=68903&op=diff
==============================================================================
--- branches/upstream/libtest-module-used-perl/current/t/016_ok_fail1.t (original)
+++ branches/upstream/libtest-module-used-perl/current/t/016_ok_fail1.t Thu Feb 17 16:22:46 2011
@@ -11,7 +11,7 @@
 my $used = Test::Module::Used->new(
     test_dir  => [catdir('testdata', 't')],
     lib_dir   => [catdir('testdata', 'lib')],
-    meta_file => catfile('testdata', 'META.yml4'),
+    meta_file => catfile('testdata', 'META4.yml'),
 );
 
 

Modified: branches/upstream/libtest-module-used-perl/current/t/017_ok_fail2.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-module-used-perl/current/t/017_ok_fail2.t?rev=68903&op=diff
==============================================================================
--- branches/upstream/libtest-module-used-perl/current/t/017_ok_fail2.t (original)
+++ branches/upstream/libtest-module-used-perl/current/t/017_ok_fail2.t Thu Feb 17 16:22:46 2011
@@ -11,7 +11,7 @@
 my $used = Test::Module::Used->new(
     test_dir  => [catdir('testdata', 't')],
     lib_dir   => [catdir('testdata', 'lib')],
-    meta_file => catfile('testdata', 'META.yml5'),
+    meta_file => catfile('testdata', 'META5.yml'),
 );
 
 

Added: branches/upstream/libtest-module-used-perl/current/testdata/META2.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-module-used-perl/current/testdata/META2.yml?rev=68903&op=file
==============================================================================
--- branches/upstream/libtest-module-used-perl/current/testdata/META2.yml (added)
+++ branches/upstream/libtest-module-used-perl/current/testdata/META2.yml Thu Feb 17 16:22:46 2011
@@ -1,0 +1,29 @@
+---
+abstract: 'Test dependency between module and META.yml'
+author:
+  - 'Takuya Tsuchida tsucchi at cpan.org'
+build_requires:
+  ExtUtils::MakeMaker: 6.42
+  Test::More: 0.88
+  Test::Class: 0
+configure_requires:
+  ExtUtils::MakeMaker: 6.42
+distribution_type: module
+generated_by: 'Module::Install version 0.91'
+license: perl
+meta-spec:
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: 1.4
+name: Test-Module-Used
+no_index:
+  directory:
+    - inc
+    - t
+    - xt
+requires:
+  Module::Used: 0
+  Test::Module::Used: 0
+  perl: 5.8.0
+resources:
+  license: http://dev.perl.org/licenses/
+version: 0.0.1

Added: branches/upstream/libtest-module-used-perl/current/testdata/META3.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-module-used-perl/current/testdata/META3.yml?rev=68903&op=file
==============================================================================
--- branches/upstream/libtest-module-used-perl/current/testdata/META3.yml (added)
+++ branches/upstream/libtest-module-used-perl/current/testdata/META3.yml Thu Feb 17 16:22:46 2011
@@ -1,0 +1,26 @@
+---
+abstract: 'write description here'
+author:
+  - 'Takuya Tsuchida E<lt>takuya.tsuchida at gmail.com<gt>'
+build_requires:
+  ExtUtils::MakeMaker: 6.42
+  Test::More: 0.88
+configure_requires:
+  ExtUtils::MakeMaker: 6.42
+distribution_type: module
+generated_by: 'Module::Install version 0.91'
+license: perl
+meta-spec:
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: 1.4
+name: My-Test
+no_index:
+  directory:
+    - inc
+    - t
+    - xt
+requires:
+  perl: 5.8.0
+resources:
+  license: http://dev.perl.org/licenses/
+version: 0.0.1

Added: branches/upstream/libtest-module-used-perl/current/testdata/META4.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-module-used-perl/current/testdata/META4.yml?rev=68903&op=file
==============================================================================
--- branches/upstream/libtest-module-used-perl/current/testdata/META4.yml (added)
+++ branches/upstream/libtest-module-used-perl/current/testdata/META4.yml Thu Feb 17 16:22:46 2011
@@ -1,0 +1,30 @@
+---
+abstract: 'Test dependency between module and META.yml'
+author:
+  - 'Takuya Tsuchida tsucchi at cpan.org'
+build_requires:
+  ExtUtils::MakeMaker: 6.42
+  Test::More: 0.88
+  Test::Class: 0
+configure_requires:
+  ExtUtils::MakeMaker: 6.42
+distribution_type: module
+generated_by: 'Module::Install version 0.91'
+license: perl
+meta-spec:
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: 1.4
+name: Test-Module-Used
+no_index:
+  directory:
+    - inc
+    - t
+    - xt
+requires:
+  Module::Used: 0
+  Test::Module::Used: 0
+  Plack: 0
+  perl: 5.8.0
+resources:
+  license: http://dev.perl.org/licenses/
+version: 0.0.1

Added: branches/upstream/libtest-module-used-perl/current/testdata/META5.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-module-used-perl/current/testdata/META5.yml?rev=68903&op=file
==============================================================================
--- branches/upstream/libtest-module-used-perl/current/testdata/META5.yml (added)
+++ branches/upstream/libtest-module-used-perl/current/testdata/META5.yml Thu Feb 17 16:22:46 2011
@@ -1,0 +1,28 @@
+---
+abstract: 'Test dependency between module and META.yml'
+author:
+  - 'Takuya Tsuchida tsucchi at cpan.org'
+build_requires:
+  ExtUtils::MakeMaker: 6.42
+  Test::More: 0.88
+  Test::Class: 0
+configure_requires:
+  ExtUtils::MakeMaker: 6.42
+distribution_type: module
+generated_by: 'Module::Install version 0.91'
+license: perl
+meta-spec:
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: 1.4
+name: Test-Module-Used
+no_index:
+  directory:
+    - inc
+    - t
+    - xt
+requires:
+  Test::Module::Used: 0
+  perl: 5.8.0
+resources:
+  license: http://dev.perl.org/licenses/
+version: 0.0.1




More information about the Pkg-perl-cvs-commits mailing list