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

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

Revision 1.3, Sat Jan 23 07:15:40 2010 UTC (14 years, 5 months ago) by andrew
Branch: MAIN
Changes since 1.2: +13 -6 lines

lots of changes to move representations out of the main module.  May have to pull them back to parse the input but we will see.

#===============================================================================
#
#         FILE:  GET/files.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: files.t,v 1.3 2010/01/23 07:15:40 andrew Exp $
#===============================================================================

use strict;
use warnings;

use Test::More tests => 8;

my $class;

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

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

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

my @files;
ok( @files = $api->get_files( $api->_todo ), 'Get Files' );
is_deeply( \@files, ['todo.txt'], 'Got correct file' );

@files = ();
ok( @files = $api->GET('.txt'), 'Get Files' );
is_deeply( \@files, ['todo.txt'], 'Got correct file' );

@files = ();
ok( @files = $api->GET('/todo_file/files.txt'), 'Get Files' );
is_deeply( \@files, ['todo.txt'], 'Got correct file' );