#=============================================================================== # # 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.4 2010/01/24 04:38:21 andrew Exp $ #=============================================================================== use strict; use warnings; use Test::More tests => 10; 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' ); my $response; ok( $response = $api->GET('.txt'), 'Get Response Files' ); $files = []; ok( $files = $response->data, 'Get response data' ); is_deeply( $files, ['todo.txt'], 'Got correct file' ); $response = undef; ok( $response = $api->GET('/todo_file/files.txt'), 'Get Files' ); $files = []; ok( $files = $response->data, 'Get response data' ); is_deeply( $files, ['todo.txt'], 'Got correct file' );