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

Diff for /todotxt/Text-Todo-REST-API/t/GET/files.t between version 1.6 and 1.7

version 1.6, 2010/01/26 06:03:11 version 1.7, 2010/01/31 03:10:39
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: files.t,v 1.5 2010/01/26 04:30:13 andrew Exp $  #     REVISION:  $AFresh1: files.t,v 1.6 2010/01/26 06:03:11 andrew Exp $
 #===============================================================================  #===============================================================================
   
 use strict;  use strict;
Line 41 
Line 41 
 is_deeply( $files, ['todo.txt'], 'Got correct file' );  is_deeply( $files, ['todo.txt'], 'Got correct file' );
   
 my $response;  my $response;
 ok( $response = $api->GET('.txt'), 'Get Response Files' );  ok( $response = $api->GET('/'), 'Get Response Files' );
   
 $files = [];  $files = [];
 ok( $files = $response->data, 'Get response data' );  ok( $files = $response->data, 'Get response data' );
 is_deeply( $files, ['todo.txt'], 'Got correct file' );  is_deeply( $files, ['todo.txt'], 'Got correct file' );
   
 $response = undef;  $response = undef;
 ok( $response = $api->GET('/todo_file/files.txt'), 'Get Files' );  ok( $response = $api->GET('.txt'), 'Get Files' );
   
 $files = [];  $files = [];
 ok( $files = $response->data, 'Get response data' );  ok( $files = $response->data, 'Get response data' );

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7

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