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

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

Revision 1.2, Mon Jan 18 13:47:53 2010 UTC (14 years, 5 months ago) by andrew
Branch: MAIN
Changes since 1.1: +2 -2 lines

No longer try to make this module figure out the todo_dir and todo_file. Leave that up to Todo::Text of allow overriding by passing in todo_file and todo_dir.

#===============================================================================
#
#         FILE:  GET/tags.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: tags.t,v 1.2 2010/01/18 13:47:53 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 GET tags $class $Text::Todo::REST::API::VERSION");

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

my %tags = (
    project => ['delete', 'dos', 'uno'],
    context => ['one', 'two'],
);

foreach my $tag (keys %tags) {
    my @tags;
    ok( @tags = $api->get_tags($tag), "Get [$tag] tags" );
    is_deeply( \@tags, $tags{$tag}, 'got expected ' . $tag . 's' );
}