Locale-Utils-PlaceholderMaketext
view release on metacpan or search on metacpan
"perl_5"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : "2"
},
"name" : "Locale-Utils-PlaceholderMaketext",
"prereqs" : {
"build" : {
"requires" : {
"Test::Differences" : "0.60",
"Test::Exception" : "0",
"Test::More" : "0",
"Test::NoWarnings" : "0"
}
},
"runtime" : {
"recommends" : {
"Test::Pod" : "1.14",
"Test::Pod::Coverage" : "1.04"
},
---
abstract: 'Locale::Utils::PlaceholderMaketext - Utils to expand maketext placeholders'
author:
- 'Steffen Winkler <steffenw at cpan.org>'
build_requires:
Test::Differences: '0.60'
Test::Exception: '0'
Test::More: '0'
Test::NoWarnings: '0'
dynamic_config: 1
generated_by: 'Module::Build version 0.4218, CPAN::Meta::Converter version 2.150005'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
name: Locale-Utils-PlaceholderMaketext
Makefile.PL view on Meta::CPAN
'EXE_FILES' => [],
'VERSION_FROM' => 'lib/Locale/Utils/PlaceholderMaketext.pm',
'NAME' => 'Locale::Utils::PlaceholderMaketext',
'PL_FILES' => {},
'INSTALLDIRS' => 'site',
'PREREQ_PM' => {
'Moo' => '1.003001',
'Test::Exception' => 0,
'Scalar::Util' => 0,
'Carp' => 0,
'Test::Differences' => '0.60',
'MooX::Types::MooseLike::Base' => 0,
'Test::NoWarnings' => 0,
'Test::More' => 0,
'MooX::StrictConstructor' => 0,
'namespace::autoclean' => 0
}
)
;
t/11_maketext_to_gettext.t view on Meta::CPAN
#!perl -T
use strict;
use warnings;
use Test::More tests => 13;
use Test::NoWarnings;
use Test::Differences;
BEGIN {
use_ok 'Locale::Utils::PlaceholderMaketext';
}
is_deeply
[
Locale::Utils::PlaceholderMaketext
->new( is_escape_percent_sign => 1 )
->maketext_to_gettext('foo % [_1] bar'),
],
t/12_gettext_to_maketext.t view on Meta::CPAN
#!perl -T
use strict;
use warnings;
use Test::More tests => 21;
use Test::NoWarnings;
use Test::Differences;
BEGIN {
use_ok 'Locale::Utils::PlaceholderMaketext';
}
my $obj = Locale::Utils::PlaceholderMaketext->new;
is_deeply
[ $obj->gettext_to_maketext(undef) ],
[ undef ],
'undef';
t/21_expand_maketext.t view on Meta::CPAN
#!perl -T
use strict;
use warnings;
use Test::More tests => 32;
use Test::NoWarnings;
use Test::Differences;
BEGIN {
use_ok 'Locale::Utils::PlaceholderMaketext';
}
my $obj = Locale::Utils::PlaceholderMaketext->new;
is_deeply
[ $obj->expand_maketext(undef) ],
[ undef ],
'undef';
t/22_expand_gettext.t view on Meta::CPAN
#!perl -T
use strict;
use warnings;
use Test::More tests => 31;
use Test::NoWarnings;
use Test::Differences;
BEGIN {
use_ok 'Locale::Utils::PlaceholderMaketext';
}
my $obj = Locale::Utils::PlaceholderMaketext->new;
is_deeply
[ $obj->expand_gettext(undef) ],
[ undef ],
'undef';
t/31_test_examples.t view on Meta::CPAN
#!perl
use strict;
use warnings;
use Test::More;
use Test::Differences;
use charnames qw(:full);
use Cwd qw(getcwd chdir);
$ENV{AUTHOR_TESTING}
or plan skip_all => 'Set $ENV{AUTHOR_TESTING} to run this test.';
plan tests => 4;
my @data = (
{
( run in 0.367 second using v1.01-cache-2.11-cpan-131fc08a04b )