Annotation of todotxt/Text-Todo-REST-API/t/PUT.t, Revision 1.1
1.1 ! andrew 1: #===============================================================================
! 2: #
! 3: # FILE: PUT.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: use Data::Dumper;
! 18:
! 19: my $class;
! 20:
! 21: BEGIN {
! 22: $class = 'Text::Todo::REST::API';
! 23: use_ok( $class, "use $class" );
! 24: }
! 25:
! 26: diag("Testing PUT $class $Text::Todo::REST::API::VERSION");
! 27:
! 28: my $api = new_ok( $class, [ { basedir => 't', path_info => '/lists/todo' } ] );
! 29:
! 30: my $result;
! 31: ok( !eval { $result = $api->PUT() }, 'PUT method' );
! 32: like( $@, '/^Unsupported \[PUT\]/', 'Failed PUT as expected' );
! 33: $result = undef;
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>