=================================================================== RCS file: /cvs/todotxt/Text-Todo-REST-API/t/GET.t,v retrieving revision 1.5 retrieving revision 1.8 diff -u -r1.5 -r1.8 --- todotxt/Text-Todo-REST-API/t/GET.t 2010/01/23 07:15:40 1.5 +++ todotxt/Text-Todo-REST-API/t/GET.t 2010/01/31 03:10:39 1.8 @@ -7,13 +7,13 @@ # AUTHOR: Andrew Fresh (AAF), andrew@cpan.org # COMPANY: Red River Communications # CREATED: 01/07/10 19:11 -# REVISION: $AFresh1: GET.t,v 1.4 2010/01/18 13:47:53 andrew Exp $ +# REVISION: $AFresh1: GET.t,v 1.7 2010/01/26 06:03:11 andrew Exp $ #=============================================================================== use strict; use warnings; -use Test::More tests => 4; +use Test::More tests => 6; my $class; @@ -26,6 +26,11 @@ my $api = new_ok( $class, [ { todo_dir => 't/lists' } ] ); -my @result; -ok( eval { @result = $api->GET() }, 'GET method' ); -is_deeply( \@result, ['todo.txt'], 'Got expected result' ); +my $result; +ok( eval { $result = $api->GET('/') }, 'GET method' ); +is( ( ref $result ), + 'Text::Todo::REST::API::Response', + 'Got expected result' +); +is_deeply( $result->data, ['todo.txt'], 'Got proper data' ); +is( $result->render({format => 'text'}), "todo.txt\n", "Rendered properly" );