[BACK]Return to entry.t CVS log [TXT][DIR] Up to [local] / todotxt / Text-Todo / t

Diff for /todotxt/Text-Todo/t/entry.t between version 1.6 and 1.7

version 1.6, 2010/01/08 04:44:54 version 1.7, 2010/01/08 17:41:56
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:  07/10/09 11:32:39  #      CREATED:  07/10/09 11:32:39
 #     REVISION:  $RedRiver: entry.t,v 1.5 2010/01/06 19:54:56 andrew Exp $  #     REVISION:  $RedRiver: entry.t,v 1.6 2010/01/08 04:44:54 andrew Exp $
 #===============================================================================  #===============================================================================
   
 use strict;  use strict;
Line 80 
Line 80 
 is( $e->text, $sample{text}, 'Make sure entry matches' );  is( $e->text, $sample{text}, 'Make sure entry matches' );
 is( $e->priority, undef, 'New priority is set' );  is( $e->priority, undef, 'New priority is set' );
   
 ok( !$e->completed, 'not completed' );  ok( !$e->done, 'not done' );
 ok( $e->complete, 'mark as completed' );  ok( $e->do, 'mark as done' );
 ok( $e->completed,  'now completed' );  ok( $e->done,  'now done' );
 is( $e->text, 'x ' . $sample{text}, 'Make sure entry matches' );  is( $e->text, 'x ' . $sample{text}, 'Make sure entry matches' );
   
 ok( $e->change(   '' ), 'Blank entry' );  ok( $e->change(   '' ), 'Blank entry' );

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

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