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

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

Revision 1.4, Tue Jan 19 03:18:34 2010 UTC (14 years, 5 months ago) by andrew
Branch: MAIN
Changes since 1.3: +4 -4 lines

make Representations not a subclass of the main class
use them as a plugin, with a lookup of a handler for what we need to do.
When I get the skeleton down it should be simple to add more features

#===============================================================================
#
#         FILE:  filters.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: formats.t,v 1.4 2010/01/19 03:18:34 andrew Exp $
#===============================================================================

use strict;
use warnings;

use Test::More tests => 6;

my $class;
BEGIN {
    $class = 'Text::Todo::REST::API';
    use_ok( $class, "use $class" );
}

diag("Testing $class $Text::Todo::REST::API::VERSION");

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

my $result;
ok( !eval { $result = $api->_handle_representation('load') }, 'Load method' );
like( $@, '/^Unable to load \[list\]/', 'Failed Load as expected' );
$result = undef;

ok( !eval { $result = $api->Dump() }, 'Dump method' );
like( $@, '/^Unable to dump \[list\]/', 'Failed Dump as expected' );
$result = undef;