Annotation of todotxt/Text-Todo-REST-API/t/DELETE.t, Revision 1.1
1.1 ! andrew 1: #===============================================================================
! 2: #
! 3: # FILE: DELETE.t
! 4: #
! 5: # DESCRIPTION: Test Text::Todo::REST::API
! 6: #
! 7: # AUTHOR: Andrew Fresh (AAF), andrew@cpan.org
! 8: # COMPANY: Red River Communications
! 9: # CREATED: 01/07/10 19:11
! 10: # REVISION: $AFresh1$
! 11: #===============================================================================
! 12:
! 13: use strict;
! 14: use warnings;
! 15:
! 16: use Test::More tests => 4;
! 17:
! 18: my $class;
! 19:
! 20: BEGIN {
! 21: $class = 'Text::Todo::REST::API';
! 22: use_ok( $class, "use $class" );
! 23: }
! 24:
! 25: diag("Testing DELETE $class $Text::Todo::REST::API::VERSION");
! 26:
! 27: my $api = new_ok( $class, [ { basedir => 't', path_info => '/lists/todo' } ] );
! 28:
! 29: my $result;
! 30: ok( !eval { $result = $api->DELETE() }, 'DELETE method' );
! 31: like( $@, '/^Unsupported \[DELETE\]/', 'Failed DELETE as expected' );
! 32: $result = undef;
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>