Skip Menu |

This queue is for tickets about the WWW-Freshmeat CPAN distribution.

Report information
The Basics
Id: 42100
Status: resolved
Priority: 0/
Queue: WWW-Freshmeat

People
Owner: Nobody in particular
Requestors: CHORNY [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: 0.01
Fixed in: 0.02



Subject: [PATCH] real test
WWW::Freshmeat has only load tests, so I wrote real test using data that are unlikely to change. -- Alexandr Ciornii, http://chorny.net
Subject: project.t
#!perl -T use strict; use warnings; use Test::More tests => 5; use WWW::Freshmeat; my $fm = WWW::Freshmeat->new; isa_ok($fm,'WWW::Freshmeat'); my $project = $fm->retrieve_project('hook_lexwrap'); isa_ok($project,'WWW::Freshmeat::Project'); is($project->name(),'Hook::LexWrap'); is($project->url(),'http://search.cpan.org/dist/Hook-LexWrap/'); is($project->license(),'Perl License');