=================================================================== RCS file: /cvs/todotxt/Text-Todo-REST-API/t/GET.t,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- 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/24 04:17:39 1.6 @@ -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.5 2010/01/23 07:15:40 andrew Exp $ #=============================================================================== use strict; use warnings; -use Test::More tests => 4; +use Test::More tests => 6; my $class; @@ -26,6 +26,8 @@ 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('/files.txt') }, '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, "todo.txt\n", "Rendered properly" );