Data-Header-Fields
view release on metacpan or search on metacpan
'String::Escape' => 0,
'List::MoreUtils' => 0,
'Scalar::Util' => 0,
'MIME::QuotedPrint' => 0,
'MIME::Base64' => 0, # Introduce make_path() and rm_tree() API extension.
'Encode' => 0,
},
build_requires => {
'Test::More' => 0,
'Test::Deep' => 0,
'Test::Differences' => 0,
'Test::Exception' => 0,
},
add_to_cleanup => [ 'Data-Header-Fields-*' ],
create_readme => 1,
meta_merge => {
resources => {
repository => 'git://github.com/jozef/Data-Header-Fields.git',
bugtracker => 'http://github.com/jozef/Data-Header-Fields/issues',
},
keywords => [ qw/ rfc822 rfc2822 header parse edit / ],
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : "2"
},
"name" : "Data-Header-Fields",
"prereqs" : {
"build" : {
"requires" : {
"Test::Deep" : "0",
"Test::Differences" : "0",
"Test::Exception" : "0",
"Test::More" : "0"
}
},
"configure" : {
"requires" : {
"Module::Build" : "0.36"
}
},
"runtime" : {
---
abstract: 'encode and decode RFC822 header field lines'
author:
- 'Jozef Kutej <jkutej@cpan.org>'
build_requires:
Test::Deep: '0'
Test::Differences: '0'
Test::Exception: '0'
Test::More: '0'
configure_requires:
Module::Build: '0.36'
dynamic_config: 1
generated_by: 'Module::Build version 0.4205, CPAN::Meta::Converter version 2.140640'
keywords:
- rfc822
- rfc2822
- header
t/01_Data-Header-Fields.t view on Meta::CPAN
#!/usr/bin/perl
use strict;
use warnings;
use Test::More 'no_plan';
#use Test::More tests => 10;
use Test::Deep;
use Test::Differences;
use Test::Exception;
use FindBin qw($Bin);
use lib "$Bin/lib";
BEGIN {
use_ok ( 'Data::Header::Fields' ) or exit;
}
exit main();
t/01_Data-v.t view on Meta::CPAN
#!/usr/bin/perl
use strict;
use warnings;
use Test::More 'no_plan';
#use Test::More tests => 10;
use Test::Differences;
use Test::Exception;
use Test::Deep;
use FindBin qw($Bin);
use lib "$Bin/lib";
BEGIN {
use_ok ( 'Data::v' ) or exit;
}
t/02_Data-Header-Fields-Line.t view on Meta::CPAN
#!/usr/bin/perl
use strict;
use warnings;
use Test::More 'no_plan';
#use Test::More tests => 10;
use Test::Differences;
use Test::Exception;
use IO::Any;
use FindBin qw($Bin);
use lib "$Bin/lib";
BEGIN {
use_ok ( 'Data::Header::Fields' ) or exit;
}
t/02_Data-Header-Fields-Value.t view on Meta::CPAN
#!/usr/bin/perl
use strict;
use warnings;
use Test::More 'no_plan';
#use Test::More tests => 10;
use Test::Differences;
use Test::Exception;
use IO::Any;
use FindBin qw($Bin);
use lib "$Bin/lib";
BEGIN {
use_ok ( 'Data::Header::Fields' ) or exit;
}
t/02_Data-v-Card.t view on Meta::CPAN
#!/usr/bin/perl
use strict;
use warnings;
use utf8;
#use Test::More 'no_plan';
use Test::More tests => 15;
use Test::Differences;
use Test::Exception;
use Test::Deep;
binmode(Test::More->builder->$_ => q(encoding(:UTF-8))) for qw(output failure_output todo_output);
use FindBin qw($Bin);
use lib "$Bin/lib";
BEGIN {
use_ok ( 'Data::v' ) or exit;
( run in 0.958 second using v1.01-cache-2.11-cpan-df04353d9ac )