[SCM] libmoox-options-perl Debian packaging branch, master, updated. debian/3.78-1-17-g6aa50a6

celogeek me at celogeek.com
Mon May 6 12:22:39 UTC 2013


The following commit has been merged in the master branch:
commit c93f4227f9ccbc5d5d61c5d34c0ed5f9fe39b98d
Author: celogeek <me at celogeek.com>
Date:   Sun Apr 28 23:40:59 2013 +0200

    fix pod issue, add test

diff --git a/lib/MooX/Options.pm b/lib/MooX/Options.pm
index fdd68b2..743a721 100755
--- a/lib/MooX/Options.pm
+++ b/lib/MooX/Options.pm
@@ -476,6 +476,8 @@ Ex :
     my $t = t->new_with_options;
     t->hash # { a => 1, b => 2 }
 
+=back
+
 =head1 namespace::clean
 
 To use namespace::clean you need to add 2 methods as an exception. It is use by MooX::Options when you run the new_with_options methods.
diff --git a/t/pod.t b/t/pod.t
new file mode 100644
index 0000000..fa057ce
--- /dev/null
+++ b/t/pod.t
@@ -0,0 +1,24 @@
+use strict;
+use warnings FATAL => 'all';
+
+BEGIN {
+	unless ( $ENV{RELEASE_TESTING} ) {
+		require Test::More;
+		Test::More::plan(
+			skip_all => 'these tests are for release candidate testing' );
+	}
+}
+
+use English qw( -no_match_vars );
+local $OUTPUT_AUTOFLUSH = 1;
+
+
+use Test::More;
+use Test::Requires { 'Test::Pod' => 1.46 };
+
+all_pod_files_ok();
+
+done_testing();
+
+__END__
+

-- 
libmoox-options-perl Debian packaging



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