=================================================================== RCS file: /cvs/todotxt/Text-Todo/t/read_todo.t,v retrieving revision 1.5 retrieving revision 1.7 diff -u -r1.5 -r1.7 --- todotxt/Text-Todo/t/read_todo.t 2010/01/10 04:08:59 1.5 +++ todotxt/Text-Todo/t/read_todo.t 2010/01/11 01:20:09 1.7 @@ -8,14 +8,14 @@ # AUTHOR: Andrew Fresh (AAF), andrew@cpan.org # COMPANY: Red River Communications # CREATED: 07/09/09 11:45:52 -# REVISION: $RedRiver: read_todo.t,v 1.4 2010/01/08 23:06:09 andrew Exp $ +# REVISION: $RedRiver: read_todo.t,v 1.6 2010/01/11 01:08:35 andrew Exp $ #=============================================================================== use strict; use warnings; use File::Spec; use File::Temp qw/ tempdir /; -use Test::More tests => 122; +use Test::More tests => 138; my $todo_file = File::Spec->catfile( 't', 'todo1.txt' ); my $tempdir = tempdir( 'todotxt-XXXXXXX', CLEANUP => 1 ); @@ -66,6 +66,12 @@ contexts => ['wherever'], projects => ['report_bug'], done => undef, + }, + { text => 'x 2009-01-01 completed with a date', + priority => undef, + contexts => [], + projects => [], + done => '2009-01-01', }, );