r54077 - in /branches/upstream/libtext-simpletable-perl/current: Changes META.yml 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:45:50 UTC 2010


Author: jawnsy-guest
Date: Thu Mar 11 02:45:45 2010
New Revision: 54077

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=54077
Log:
[svn-upgrade] Integrating new upstream version, libtext-simpletable-perl (2.02)

Modified:
    branches/upstream/libtext-simpletable-perl/current/Changes
    branches/upstream/libtext-simpletable-perl/current/META.yml
    branches/upstream/libtext-simpletable-perl/current/lib/Text/SimpleTable.pm
    branches/upstream/libtext-simpletable-perl/current/t/04tables.t

Modified: branches/upstream/libtext-simpletable-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-simpletable-perl/current/Changes?rev=54077&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/Changes (original)
+++ branches/upstream/libtext-simpletable-perl/current/Changes Thu Mar 11 02:45:45 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: branches/upstream/libtext-simpletable-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-simpletable-perl/current/META.yml?rev=54077&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/META.yml (original)
+++ branches/upstream/libtext-simpletable-perl/current/META.yml Thu Mar 11 02:45:45 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: branches/upstream/libtext-simpletable-perl/current/lib/Text/SimpleTable.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-simpletable-perl/current/lib/Text/SimpleTable.pm?rev=54077&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/lib/Text/SimpleTable.pm (original)
+++ branches/upstream/libtext-simpletable-perl/current/lib/Text/SimpleTable.pm Thu Mar 11 02:45:45 2010
@@ -5,7 +5,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '2.01';
+our $VERSION = '2.02';
 
 # Top
 our $TOP_LEFT      = '.-';

Modified: branches/upstream/libtext-simpletable-perl/current/t/04tables.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-simpletable-perl/current/t/04tables.t?rev=54077&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/t/04tables.t (original)
+++ branches/upstream/libtext-simpletable-perl/current/t/04tables.t Thu Mar 11 02:45:45 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