Net-Dict
view release on metacpan or search on metacpan
- Fixed typo in doc. Patch from Gregor Herrmann. RT#112367
- Dropped usage of "use vars".
2.19 2014-12-17
- Fixed failing tests - caused by updated dictionaries on dict.org
- Added a TODO.md file with the things I want to get around to doing.
2.18 2014-06-26
- Some of the dict.org databases have been updated, needing updates
to databases. Reported by RJBS.
- Converted tests to use eq_or_diff() from Test::Differences,
also suggested by RJBS.
2.17 2014-04-25
- Converted all remaining tests to use Test::More
- Tidied up SEE ALSO, including fixing of broken links
- Tidied up code snippets in the doc
- Reformatted code according to my current conventions,
and got rid of a few rogue tab characters
2.16 2014-04-20
"requires" : {
"AppConfig::Std" : "0",
"Carp" : "0",
"IO::Socket" : "0",
"Net::Cmd" : "0",
"perl" : "5.006"
}
},
"test" : {
"requires" : {
"Test::Differences" : "0.62",
"Test::More" : "0.88",
"Test::RequiresInternet" : "0.05"
}
}
},
"release_status" : "stable",
"resources" : {
"repository" : {
"url" : "https://github.com/neilbowers/Net-Dict"
}
---
abstract: 'client API for accessing dictionary servers (RFC 2229)'
author:
- 'Neil Bowers <neil@bowers.com>'
build_requires:
ExtUtils::MakeMaker: '0'
Test::Differences: '0.62'
Test::More: '0.88'
Test::RequiresInternet: '0.05'
configure_requires:
ExtUtils::MakeMaker: '0'
dynamic_config: 1
generated_by: 'ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
Makefile.PL view on Meta::CPAN
dist => {COMPRESS => 'gzip', SUFFIX => 'gz'},
($mm_ver >= 6.48
? (MIN_PERL_VERSION => 5.006)
: ()
),
($mm_ver >= 6.64
? (TEST_REQUIRES => {
'Test::More' => 0.88,
'Test::Differences' => 0.62,
'Test::RequiresInternet' => 0.05,
})
: ()
),
);
* Move all live dict.org tests to xt/release
* Come up with some sensible tests for t/
that don't require a remote DICT server
* Full test coverage
* Change t/define.t to use Test::Differences
* Better OO design
* Switch to Dist::Zilla
t/connection.t view on Meta::CPAN
#!./perl
#
#
use Net::Dict;
use strict;
$^W = 1;
use Test::More 0.88;
use Test::RequiresInternet 0.05 ('dict.org' => 2628);
use Test::Differences qw/ eq_or_diff /;
use lib 't/lib';
use Net::Dict::TestConfig qw/ $TEST_HOST $TEST_PORT /;
my $WARNING;
my %TESTDATA;
my $section;
my @caps;
my $description;
my $dict;
t/database.t view on Meta::CPAN
#!./perl
#
# database.t - Net::Dict testsuite for database related methods
#
use Test::More 0.88;
use Test::RequiresInternet 0.05 ('dict.org' => 2628);
use Test::Differences qw/ eq_or_diff /;
use Net::Dict;
use lib 't/lib';
use Net::Dict::TestConfig qw/ $TEST_HOST $TEST_PORT /;
$^W = 1;
my $WARNING;
my %TESTDATA;
my $section;
my $string;
#!./perl
#
# match.t - Net::Dict testsuite for match() method
#
use Test::More 0.88;
use Test::RequiresInternet 0.05 ('dict.org' => 2628);
use Test::Differences qw/ eq_or_diff /;
use Net::Dict;
use lib 't/lib';
use Net::Dict::TestConfig qw/ $TEST_HOST $TEST_PORT /;
use Env qw($VERBOSE);
$^W = 1;
my $WARNING;
my %TESTDATA;
my $defref;
( run in 0.514 second using v1.01-cache-2.11-cpan-131fc08a04b )