r11848 - in /branches/upstream/libtest-class-perl/current: Changes META.yml Makefile.PL README lib/Test/Class.pm

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sun Dec 30 12:59:00 UTC 2007


Author: gregoa-guest
Date: Sun Dec 30 12:59:00 2007
New Revision: 11848

URL: http://svn.debian.org/wsvn/?sc=1&rev=11848
Log:
[svn-upgrade] Integrating new upstream version, libtest-class-perl (0.27)

Modified:
    branches/upstream/libtest-class-perl/current/Changes
    branches/upstream/libtest-class-perl/current/META.yml
    branches/upstream/libtest-class-perl/current/Makefile.PL
    branches/upstream/libtest-class-perl/current/README
    branches/upstream/libtest-class-perl/current/lib/Test/Class.pm

Modified: branches/upstream/libtest-class-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libtest-class-perl/current/Changes?rev=11848&op=diff
==============================================================================
--- branches/upstream/libtest-class-perl/current/Changes (original)
+++ branches/upstream/libtest-class-perl/current/Changes Sun Dec 30 12:59:00 2007
@@ -1,3 +1,6 @@
+0.27 - or the "Adrian cannot write in English" release
+    -   Fixed a couple of typos/grammar stupidities (thank Jim Brandt)
+
 0.26 - or the "really working on windows this time (fingers crossed)" release
 	-	Tests that look at test_err from Test::Builder::Tester now use caller() 
 		to get the filename - just like Test::Builder. So hopefully everything 

Modified: branches/upstream/libtest-class-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libtest-class-perl/current/META.yml?rev=11848&op=diff
==============================================================================
--- branches/upstream/libtest-class-perl/current/META.yml (original)
+++ branches/upstream/libtest-class-perl/current/META.yml Sun Dec 30 12:59:00 2007
@@ -1,6 +1,6 @@
 ---
 name: Test-Class
-version: 0.26
+version: 0.27
 author:
   - 'Adrian Howard <adrianh at quietstars.com>'
 abstract: Easily create test classes in an xUnit/JUnit style
@@ -22,14 +22,14 @@
 provides:
   Test::Class:
     file: lib/Test/Class.pm
-    version: 0.26
+    version: 0.27
   Test::Class::Load:
     file: lib/Test/Class/Load.pm
     version: 0.02
   Test::Class::MethodInfo:
     file: lib/Test/Class/MethodInfo.pm
     version: 0.02
-generated_by: Module::Build version 0.2808
+generated_by: Module::Build version 0.280801
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.2.html
   version: 1.2

Modified: branches/upstream/libtest-class-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libtest-class-perl/current/Makefile.PL?rev=11848&op=diff
==============================================================================
--- branches/upstream/libtest-class-perl/current/Makefile.PL (original)
+++ branches/upstream/libtest-class-perl/current/Makefile.PL Sun Dec 30 12:59:00 2007
@@ -1,4 +1,5 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.03
+# Note: this file was auto-generated by Module::Build::Compat version 0.2808_01
+require 5.6.1;
 use ExtUtils::MakeMaker;
 WriteMakefile
 (

Modified: branches/upstream/libtest-class-perl/current/README
URL: http://svn.debian.org/wsvn/branches/upstream/libtest-class-perl/current/README?rev=11848&op=diff
==============================================================================
--- branches/upstream/libtest-class-perl/current/README (original)
+++ branches/upstream/libtest-class-perl/current/README Sun Dec 30 12:59:00 2007
@@ -75,8 +75,8 @@
     Later Kent Beck and Erich Gamma created JUnit for testing Java
     <http://www.junit.org/>. It was popular too.
 
-    Now there xUnit frameworks for every language from Ada to XSLT. You can
-    find a list at <http://www.xprogramming.com/software.htm>.
+    Now there are xUnit frameworks for every language from Ada to XSLT. You
+    can find a list at <http://www.xprogramming.com/software.htm>.
 
     While xUnit frameworks are traditionally associated with unit testing
     they are also useful in the creation of functional/acceptance tests.
@@ -248,10 +248,10 @@
       };
 
     Just like setup and teardown methods you can pass an optional number of
-    tests to startup and shutdown methods:
-
-      sub example : Test(setup => 1) {
-          ok(1, 'a setup method with one test');
+    tests to startup and shutdown methods. For example:
+
+      sub example : Test(startup => 1) {
+          ok(1, 'a startup method with one test');
       };
 
     If a startup method has a failing test or throws an exception then all

Modified: branches/upstream/libtest-class-perl/current/lib/Test/Class.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libtest-class-perl/current/lib/Test/Class.pm?rev=11848&op=diff
==============================================================================
--- branches/upstream/libtest-class-perl/current/lib/Test/Class.pm (original)
+++ branches/upstream/libtest-class-perl/current/lib/Test/Class.pm Sun Dec 30 12:59:00 2007
@@ -12,7 +12,7 @@
 use Test::Builder;
 use Test::Class::MethodInfo;
 
-our $VERSION = '0.26';
+our $VERSION = '0.27';
 
 my $Check_block_has_run;
 {
@@ -486,7 +486,7 @@
 
 Later Kent Beck and Erich Gamma created JUnit for testing Java L<http://www.junit.org/>. It was popular too.
 
-Now there xUnit frameworks for every language from Ada to XSLT. You can find a list at L<http://www.xprogramming.com/software.htm>.
+Now there are xUnit frameworks for every language from Ada to XSLT. You can find a list at L<http://www.xprogramming.com/software.htm>.
 
 While xUnit frameworks are traditionally associated with unit testing they are also useful in the creation of functional/acceptance tests.
 
@@ -659,10 +659,10 @@
       shift->{dbi}->disconnect;
   };
 
-Just like setup and teardown methods you can pass an optional number of tests to startup and shutdown methods:
-
-  sub example : Test(setup => 1) {
-      ok(1, 'a setup method with one test');
+Just like setup and teardown methods you can pass an optional number of tests to startup and shutdown methods. For example:
+
+  sub example : Test(startup => 1) {
+      ok(1, 'a startup method with one test');
   };
   
 If a startup method has a failing test or throws an exception then all other tests for the current test object are ignored. 




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