=================================================================== RCS file: /cvs/todotxt/Text-Todo-REST-API/t/GET.t,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- todotxt/Text-Todo-REST-API/t/GET.t 2010/01/24 04:17:39 1.6 +++ todotxt/Text-Todo-REST-API/t/GET.t 2010/01/26 06:03:11 1.7 @@ -7,7 +7,7 @@ # AUTHOR: Andrew Fresh (AAF), andrew@cpan.org # COMPANY: Red River Communications # CREATED: 01/07/10 19:11 -# REVISION: $AFresh1: GET.t,v 1.5 2010/01/23 07:15:40 andrew Exp $ +# REVISION: $AFresh1: GET.t,v 1.6 2010/01/24 04:17:39 andrew Exp $ #=============================================================================== use strict; @@ -28,6 +28,9 @@ my $result; ok( eval { $result = $api->GET('/files.txt') }, 'GET method' ); -is( (ref $result), 'Text::Todo::REST::API::Response', 'Got expected result' ); +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" );