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

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

Revision 1.5, Tue Jan 26 06:03:11 2010 UTC (14 years, 4 months ago) by andrew
Branch: MAIN
CVS Tags: HEAD
Changes since 1.4: +6 -3 lines

perltidy

#===============================================================================
#
#         FILE:  DELETE.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: DELETE.t,v 1.5 2010/01/26 06:03:11 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 DELETE $class $Text::Todo::REST::API::VERSION");

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

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