[BACK]Return to text.t CVS log [TXT][DIR] Up to [local] / todotxt / Text-Todo-REST-API / t / formats

Diff for /todotxt/Text-Todo-REST-API/t/formats/text.t between version 1.1 and 1.3

version 1.1, 2010/01/17 19:57:16 version 1.3, 2010/01/17 21:53:35
Line 7 
Line 7 
 #       AUTHOR:  Andrew Fresh (AAF), andrew@cpan.org  #       AUTHOR:  Andrew Fresh (AAF), andrew@cpan.org
 #      COMPANY:  Red River Communications  #      COMPANY:  Red River Communications
 #      CREATED:  01/07/10 19:11  #      CREATED:  01/07/10 19:11
 #     REVISION:  $AFresh1$  #     REVISION:  $AFresh1: text.t,v 1.2 2010/01/17 21:08:55 andrew Exp $
 #===============================================================================  #===============================================================================
   
 use strict;  use strict;
 use warnings;  use warnings;
   
 use Test::More tests => 10;  use Test::More tests => 40;
   
 my $class;  my $class;
 my $subclass;  my $subclass;
Line 63 
Line 63 
     map { $_->{text} . "\n" } @{$list_should_be};      map { $_->{text} . "\n" } @{$list_should_be};
   
 my $result;  my $result;
 ok( !eval { $result = $api->Load('test') }, 'Load method (test)' );  ok( !eval { $result = $api->Load() }, 'Load method' );
 like( $@, '/^Unable to Load \[test\]/', 'Failed Load as expected' );  like( $@, '/^Unable to Load \[list\]/', 'Failed Load as expected' );
   
 $result = undef;  $result = undef;
 ok( !eval { $result = $api->Dump('test') }, 'Dump method (test)' );  ok( !( $result = $api->Dump()), 'Dump method' );
 like( $@, '/^Unable to Dump \[test\]/', 'Failed Dump test as expected' );  is($result, undef, 'Dump returned undef');
   
 $result = undef;  $result = undef;
 ok( eval { $result = $api->Dump( 'list', @{$list_should_be} ) },  ok( eval { $result = $api->Dump( @{$list_should_be} ) },
     'Dump method' );      'Dump method' );
 is( $result, $list_dump_should_be, 'Got expected Dump result' );  is( $result, $list_dump_should_be, 'Got expected Dump result' );
 $result = undef;  $result = undef;
   
   foreach my $e ( @{$list_should_be} ) {
       my $api = new_ok(
           $class,
           [   {   basedir   => 't',
                   path_info => '/lists/todo/entry/' . $e->{md5} . '.txt'
               }
           ]
       );
       my @entry;
       ok( @entry = $api->GET(), "get_entry by GET()" );
       is_deeply( \@entry, [ $e ], 'got correct entry' );
   
       my $result;
       ok( $result = $api->Dump(@entry), 'Dump output' );
       is( $result, $e->{text} . "\n", 'Got correct Dump result' );
   }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.3

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>