[BACK]Return to GET.t CVS log [TXT][DIR] Up to [local] / todotxt / Text-Todo-REST-API / t

File: [local] / todotxt / Text-Todo-REST-API / t / GET.t (download)

Revision 1.8, Sun Jan 31 03:10:39 2010 UTC (14 years, 4 months ago) by andrew
Branch: MAIN
CVS Tags: HEAD
Changes since 1.7: +3 -3 lines

path is now '/todo_file/entry/sub_action'
there are no special file actions so simplify the paths.

#===============================================================================
#
#         FILE:  GET.t
#
#  DESCRIPTION:  Test Text::Todo::REST::API
#
#       AUTHOR:  Andrew Fresh (AAF), andrew@cpan.org
#      COMPANY:  Red River Communications
#      CREATED:  01/07/10 19:11
#     REVISION:  $AFresh1: GET.t,v 1.8 2010/01/31 03:10:39 andrew Exp $
#===============================================================================

use strict;
use warnings;

use Test::More tests => 6;

my $class;

BEGIN {
    $class = 'Text::Todo::REST::API';
    use_ok( $class, "use $class" );
}

diag("Testing GET $class $Text::Todo::REST::API::VERSION");

my $api = new_ok( $class, [ { todo_dir => 't/lists' } ] );

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" );