[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.2, Sun Jan 17 20:18:58 2010 UTC (14 years, 5 months ago) by andrew
Branch: MAIN
Changes since 1.1: +2 -2 lines

now without an action, defaults to files, probably that is wrong.

#===============================================================================
#
#         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.2 2010/01/17 20:18:58 andrew Exp $
#===============================================================================

use strict;
use warnings;

use Test::More tests => 4;

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, [ { basedir => 't', path_info => '/lists/todo' } ] );

my $result;
ok( !eval { $result = $api->GET() }, 'GET method' );
like( $@, '/^Unable to Dump \[files\]/', 'Failed GET as expected' );
$result = undef;