Author: kwilliams
Date: Thu Jul 19 20:17:36 2007
New Revision: 9773

Modified:
   Module-Build/trunk/   (props changed)
   Module-Build/trunk/t/metadata.t
   Module-Build/trunk/website/META-spec.pod

Log:
 [EMAIL PROTECTED]:  ken | 2007-07-14 12:56:32 -0500
 Fix misnamed 'urls'->'resources' in synopsis


Modified: Module-Build/trunk/t/metadata.t
==============================================================================
--- Module-Build/trunk/t/metadata.t     (original)
+++ Module-Build/trunk/t/metadata.t     Thu Jul 19 20:17:36 2007
@@ -2,7 +2,7 @@
 
 use strict;
 use lib $ENV{PERL_CORE} ? '../lib/Module/Build/t/lib' : 't/lib';
-use MBTest tests => 47;
+use MBTest tests => 48;
 
 use Cwd ();
 my $cwd = Cwd::cwd;
@@ -19,6 +19,9 @@
    dist_author   => [ 'Simple Simon <[EMAIL PROTECTED]>' ],
    dist_abstract => 'Something interesting',
    license       => 'perl',
+   meta_add => {
+               'keywords' => [qw(super duper something)],
+              },
   );
 
 
@@ -50,6 +53,7 @@
       "'meta-spec' -> 'version' field present in META.yml";
   ok defined( $node->{'meta-spec'}{url} ),
       "'meta-spec' -> 'url' field present in META.yml";
+  is_deeply $node->{keywords}, $metadata{meta_add}{keywords};
 }
 
 $dist->clean;

Modified: Module-Build/trunk/website/META-spec.pod
==============================================================================
--- Module-Build/trunk/website/META-spec.pod    (original)
+++ Module-Build/trunk/website/META-spec.pod    Thu Jul 19 20:17:36 2007
@@ -33,7 +33,7 @@
    YAML: 0.35
  build_requires:
    Test: 0
- urls:
+ resources:
    license: http://dev.perl.org/licenses/
  meta-spec:
    version: 1.3

Reply via email to