=================================================================== RCS file: /cvs/todotxt/Text-Todo-REST-API/t/GET/entry.t,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- todotxt/Text-Todo-REST-API/t/GET/entry.t 2010/01/31 03:10:39 1.9 +++ todotxt/Text-Todo-REST-API/t/GET/entry.t 2010/02/13 21:48:28 1.10 @@ -7,7 +7,7 @@ # AUTHOR: Andrew Fresh (AAF), andrew@cpan.org # COMPANY: Red River Communications # CREATED: 01/07/10 19:11 -# REVISION: $AFresh1: entry.t,v 1.8 2010/01/26 06:03:11 andrew Exp $ +# REVISION: $AFresh1: entry.t,v 1.9 2010/01/31 03:10:39 andrew Exp $ #=============================================================================== use strict; @@ -45,7 +45,7 @@ is_deeply( $entry, $e, "Entry Matches" ); my $response; - ok( $response = $api->GET( '/todo_file/' . $e->{$type} ), + ok( $response = $api->GET( '/todo_file/entry/' . $e->{$type} ), "by $type GET($e->{$type})" ); $entry = undef; ok( $entry = $response->data, 'Get data from response' ); @@ -53,7 +53,7 @@ $response = undef; ok( $response - = $api->GET( '/todo_file/' . $e->{$type} . '/done' ), + = $api->GET( '/todo_file/entry/' . $e->{$type} . '/done' ), "by $type GET($e->{$type}/done)" ); my ($should_be) = $e->{text} =~ /^(x)/xms;