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

Diff for /todotxt/Text-Todo/t/special_tags.t between version 1.5 and 1.6

version 1.5, 2010/01/15 19:50:15 version 1.6, 2010/02/13 23:06:34
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/09//10 17:43  #      CREATED:  01/09//10 17:43
 #     REVISION:  $AFresh1: special_tags.t,v 1.4 2010/01/15 19:44:32 andrew Exp $  #     REVISION:  $AFresh1: special_tags.t,v 1.5 2010/01/15 19:50:15 andrew Exp $
 #===============================================================================  #===============================================================================
   
 use strict;  use strict;
 use warnings;  use warnings;
   
 use Test::More tests => 7;  use Test::More tests => 8;
   
 my $class;  my $class;
 BEGIN {  BEGIN {
Line 26 
Line 26 
 my %sample = (  my %sample = (
     text     => '(B) @home @work send email to andrew@cpan.org DUE:2011-01-01 +say_thanks',      text     => '(B) @home @work send email to andrew@cpan.org DUE:2011-01-01 +say_thanks',
   
       known_tags => {
           context => '@',
           project => '+',
           due_date => 'DUE:',
       },
   
     priority  => 'B',      priority  => 'B',
     contexts  => [ 'home', 'work' ],      contexts  => [ 'home', 'work' ],
     projects  => ['say_thanks'],      projects  => ['say_thanks'],
Line 33 
Line 39 
 );  );
   
 my $e = new_ok($class, [ {text => $sample{text}, tags => { due_date => 'DUE:' }} ]);  my $e = new_ok($class, [ {text => $sample{text}, tags => { due_date => 'DUE:' }} ]);
   
   is_deeply( $e->known_tags, $sample{known_tags}, 'check known_tags' );
   
 is( $e->text,     $sample{text},     'Make sure entry matches' );  is( $e->text,     $sample{text},     'Make sure entry matches' );
 is( $e->priority, $sample{priority}, 'check priority' );  is( $e->priority, $sample{priority}, 'check priority' );

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

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