#=============================================================================== # # FILE: POST.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: POST.t,v 1.4 2010/01/23 07:15:40 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 POST $class $Text::Todo::REST::API::VERSION"); my $api = new_ok( $class, [ { todo_dir => 't/lists' } ] ); my $result; ok( !eval { $result = $api->POST() }, 'POST method' ); like( $@, '/^Unable to handle \[post_files\]/', 'Failed POST as expected' );