=================================================================== RCS file: /cvs/todotxt/Text-Todo/t/special_tags.t,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- todotxt/Text-Todo/t/special_tags.t 2010/01/15 19:50:15 1.5 +++ todotxt/Text-Todo/t/special_tags.t 2010/02/13 23:06:34 1.6 @@ -7,13 +7,13 @@ # AUTHOR: Andrew Fresh (AAF), andrew@cpan.org # COMPANY: Red River Communications # 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 warnings; -use Test::More tests => 7; +use Test::More tests => 8; my $class; BEGIN { @@ -26,6 +26,12 @@ my %sample = ( 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', contexts => [ 'home', 'work' ], projects => ['say_thanks'], @@ -33,6 +39,8 @@ ); 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->priority, $sample{priority}, 'check priority' );