Acme-AwesomeQuotes
view release on metacpan or search on metacpan
lib/Acme/AwesomeQuotes.pm view on Meta::CPAN
1234567891011121314151617181920212223use
strict;
use
warnings;
use
utf8;
use
5.008_003;
package
Acme::AwesomeQuotes;
BEGIN {
$Acme::AwesomeQuotes::VERSION
=
'0.02'
;
}
binmode
STDIN,
':utf8'
;
binmode
STDOUT,
':utf8'
;
binmode
STDERR,
':utf8'
;
use
Exporter;
our
@ISA
=
qw(Exporter)
;
our
@EXPORT_OK
=
qw(GetAwesome)
;
our
@EXPORT
=
qw(GetAwesome)
;
# ABSTRACT: Make your text awesome!
t/01-prerequisites.t view on Meta::CPAN
123456789101112131415161718#!/usr/bin/perl
use
strict;
use
warnings;
use
utf8;
binmode
STDOUT,
':utf8'
;
binmode
STDERR,
':utf8'
;
use
Test::More;
my
@modules
=
qw(utf8 Exporter Carp Unicode::Normalize)
;
plan
tests
=> (
scalar
@modules
);
for
(
@modules
) {
use_ok
$_
;
}
t/getawesome.t view on Meta::CPAN
1234567891011121314151617#!/usr/bin/perl
use
strict;
use
warnings;
use
utf8;
binmode
STDOUT,
':utf8'
;
binmode
STDERR,
':utf8'
;
use
Test::More;
BEGIN {
plan
tests
=> (22);
use_ok (
'Acme::AwesomeQuotes'
) or diag(
"Cannot load module Acme::AwesomeQuotes!"
);
}
( run in 0.234 second using v1.01-cache-2.11-cpan-05444aca049 )