r54086 - in /trunk/libtext-simpletable-perl: Changes META.yml debian/changelog lib/Text/SimpleTable.pm t/04tables.t

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Thu Mar 11 02:58:12 UTC 2010


Author: jawnsy-guest
Date: Thu Mar 11 02:58:07 2010
New Revision: 54086

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=54086
Log:
Fixes tests. Not needed unless FTBFS
IGNORE-VERSION: 2.02-1
* New upstream release

Modified:
    trunk/libtext-simpletable-perl/Changes
    trunk/libtext-simpletable-perl/META.yml
    trunk/libtext-simpletable-perl/debian/changelog
    trunk/libtext-simpletable-perl/lib/Text/SimpleTable.pm
    trunk/libtext-simpletable-perl/t/04tables.t

Modified: trunk/libtext-simpletable-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-simpletable-perl/Changes?rev=54086&op=diff
==============================================================================
--- trunk/libtext-simpletable-perl/Changes (original)
+++ trunk/libtext-simpletable-perl/Changes Thu Mar 11 02:58:07 2010
@@ -1,4 +1,7 @@
-Tis file documents the revision history for Perl extension Text::SimpleTable.
+This file documents the revision history for Perl extension Text::SimpleTable.
+
+2.02  2010-03-09 00:00:00
+        - Cleaned up tests.
 
 2.01  2010-03-01 00:00:00
         - Removed .perltidyrc.

Modified: trunk/libtext-simpletable-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-simpletable-perl/META.yml?rev=54086&op=diff
==============================================================================
--- trunk/libtext-simpletable-perl/META.yml (original)
+++ trunk/libtext-simpletable-perl/META.yml Thu Mar 11 02:58:07 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Text-SimpleTable
-version:            2.01
+version:            2.02
 abstract:           Simple eyecandy ASCII tables
 author:
     - Sebastian Riedel <sri at cpan.org>

Modified: trunk/libtext-simpletable-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-simpletable-perl/debian/changelog?rev=54086&op=diff
==============================================================================
--- trunk/libtext-simpletable-perl/debian/changelog (original)
+++ trunk/libtext-simpletable-perl/debian/changelog Thu Mar 11 02:58:07 2010
@@ -1,7 +1,8 @@
-libtext-simpletable-perl (2.01-1) UNRELEASED; urgency=low
+libtext-simpletable-perl (2.02-1) UNRELEASED; urgency=low
 
   Removes .perltidyrc
-  IGNORE-VERSION: 2.01-1
+  Fixes tests. Not needed unless FTBFS
+  IGNORE-VERSION: 2.02-1
 
   TODO for next release - rewrite control description
 
@@ -9,8 +10,9 @@
   * Standards-Version 3.8.4 (drop perl version dep)
   * Add myself to Uploaders and Copyright
   * Update to new DEP5 copyright format
+  * New upstream release
 
- -- Jonathan Yu <jawnsy at cpan.org>  Sat, 06 Mar 2010 21:25:08 -0500
+ -- Jonathan Yu <jawnsy at cpan.org>  Wed, 10 Mar 2010 22:12:36 -0500
 
 libtext-simpletable-perl (1.2-1) unstable; urgency=low
 

Modified: trunk/libtext-simpletable-perl/lib/Text/SimpleTable.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-simpletable-perl/lib/Text/SimpleTable.pm?rev=54086&op=diff
==============================================================================
--- trunk/libtext-simpletable-perl/lib/Text/SimpleTable.pm (original)
+++ trunk/libtext-simpletable-perl/lib/Text/SimpleTable.pm Thu Mar 11 02:58:07 2010
@@ -5,7 +5,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '2.01';
+our $VERSION = '2.02';
 
 # Top
 our $TOP_LEFT      = '.-';

Modified: trunk/libtext-simpletable-perl/t/04tables.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-simpletable-perl/t/04tables.t?rev=54086&op=diff
==============================================================================
--- trunk/libtext-simpletable-perl/t/04tables.t (original)
+++ trunk/libtext-simpletable-perl/t/04tables.t Thu Mar 11 02:58:07 2010
@@ -14,7 +14,7 @@
 $t1->row('Catalyst',          'rockz!');
 $t1->row('DBIx::Class',       'suckz!');
 $t1->row('Template::Toolkit', 'rockz!');
-is($t1->draw, <<EOF);
+is($t1->draw, <<EOF, 'right table');
 .-------+------------.
 | Cata- | rockz!     |
 | lyst  |            |
@@ -31,7 +31,7 @@
 # Titles and multiple cols
 my $t2 = Text::SimpleTable->new([5, 'ROCKZ!'], [10, 'Suckz!'], [7, 'rockz!']);
 $t2->row('Catalyst', 'DBIx::Class', 'Template::Toolkit', 'HTML::Mason');
-is($t2->draw, <<EOF);
+is($t2->draw, <<EOF, 'right table');
 .-------+------------+---------.
 | ROCK- | Suckz!     | rockz!  |
 | Z!    |            |         |
@@ -45,7 +45,7 @@
 # Minimal
 my $t3 = Text::SimpleTable->new(5);
 $t3->row('Everything works!');
-is($t3->draw, <<EOF);
+is($t3->draw, <<EOF, 'right table');
 .-------.
 | Ever- |
 | ythi- |
@@ -59,7 +59,7 @@
 $t4->row('Everything works!');
 $t4->hr;
 $t4->row('Everything works!');
-is($t4->draw, <<EOF);
+is($t4->draw, <<EOF, 'right table');
 .-------.
 | Ever- |
 | ythi- |
@@ -78,7 +78,7 @@
 $t5->row('Works!');
 $t5->hr;
 $t5->row('Works!');
-is($t5->draw, <<EOF);
+is($t5->draw, <<EOF, 'right table');
 .----.
 | W- |
 | o- |




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