Преглед на файлове

Modifications for release testing

  * added manifest.t
  * added pod.t
  * updated MANIFEST file to include everything
  * added MANIFEST.SKIP
Gordon Child преди 14 години
родител
ревизия
201a725350
променени са 4 файла, в които са добавени 65 реда и са изтрити 0 реда
  1. 36 0
      MANIFEST
  2. 1 0
      MANIFEST.SKIP
  3. 13 0
      t/manifest.t
  4. 15 0
      t/pod.t

+ 36 - 0
MANIFEST

@@ -10,3 +10,39 @@ lib/Selenium/Remote/Commands.pm
 t/00-load.t
 t/01-driver-live.t
 t/http-server.pl
+inc/Module/AutoInstall.pm
+inc/Module/Install/AutoInstall.pm
+inc/Module/Install/Base.pm
+inc/Module/Install/Can.pm
+inc/Module/Install/Fetch.pm
+inc/Module/Install/Include.pm
+inc/Module/Install/Makefile.pm
+inc/Module/Install/Metadata.pm
+inc/Module/Install/Win32.pm
+inc/Module/Install/WriteAll.pm
+inc/Module/Install.pm
+driver-example.pl
+ide-plugin.js
+ignore.txt
+.project
+.includepath
+MANIFEST.SKIP
+t/02-webelement-live.t
+t/manifest.t
+t/pod-coverage.t
+t/pod.t
+t/selenium-test-server.pl
+t/www/404.html
+t/www/alerts.html
+t/www/cookies.html
+t/www/dragAndDropTest.html
+t/www/formPage.html
+t/www/frameset.html
+t/www/icon.gif
+t/www/iframes.html
+t/www/index.html
+t/www/javascriptPage.html
+t/www/jquery-1.3.2.js
+t/www/nestedElements.html
+t/www/popup.html
+t/www/xhtmlTest.html

+ 1 - 0
MANIFEST.SKIP

@@ -0,0 +1 @@
+.git.*

+ 13 - 0
t/manifest.t

@@ -0,0 +1,13 @@
+#!perl -T
+
+use strict;
+use warnings;
+use Test::More;
+
+unless ( $ENV{RELEASE_TESTING} ) {
+    plan( skip_all => "Author tests not required for installation" );
+}
+
+eval "use Test::CheckManifest 0.9";
+plan skip_al => "Test::CheckManifest 0.9 required" if $@;
+ok_manifest();

+ 15 - 0
t/pod.t

@@ -0,0 +1,15 @@
+#!perl -T
+
+use strict;
+use warnings;
+use Test::More;
+
+unless ( $ENV{RELEASE_TESTING} ) {
+    plan( skip_all => "Author tests not required for installation" );
+}
+
+my $min_tp = 1.22;
+eval "use Test::Pod $min_tp";
+plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;
+
+all_pod_files_ok();