API-Drip-Request
view release on metacpan or search on metacpan
Revision history for API-Drip
0.05 8/29/17
Added Github information to meta and updated bug reporting location.
Please submit an issue via Github.
0.04 8/29/17
Fixed tests
0.03 8/24/17
Fixed bug when the endpoint contains slashes.
Added more options to drip.pl
0.02 8/23/17
Adding dependencies in Build.PL. We might need those.
0.01 8/23/17
First version, released on an unsuspecting world.
INSTALLATION
If you have a cpan client on your machine, the easiest way to install is:
cpan API::Drip::Requst
To install this module manually, download the distro and run the following commands:
perl Build.PL
./Build
./Build test
./Build install
SUPPORT AND DOCUMENTATION
After installing, you can find documentation for this module with the
perldoc command.
perldoc API::Drip
You can also look for information at:
t/00-load.t view on Meta::CPAN
#!perl -T
use v5.14;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'API::Drip::Request' ) || print "Bail out!\n";
}
diag( "Testing API::Drip::Request $API::Drip::Request::VERSION, Perl $], $^X" );
t/manifest.t view on Meta::CPAN
#!perl -T
use v5.14;
use strict;
use warnings;
use Test::More;
unless ( $ENV{RELEASE_TESTING} ) {
plan( skip_all => "Author tests not required for installation" );
}
my $min_tcm = 0.9;
eval "use Test::CheckManifest $min_tcm";
plan skip_all => "Test::CheckManifest $min_tcm required" if $@;
ok_manifest();
t/pod-coverage.t view on Meta::CPAN
#!perl -T
use v5.14;
use strict;
use warnings;
use Test::More;
unless ( $ENV{RELEASE_TESTING} ) {
plan( skip_all => "Author tests not required for installation" );
}
# Ensure a recent version of Test::Pod::Coverage
my $min_tpc = 1.08;
eval "use Test::Pod::Coverage $min_tpc";
plan skip_all => "Test::Pod::Coverage $min_tpc required for testing POD coverage"
if $@;
# Test::Pod::Coverage doesn't require a minimum Pod::Coverage version,
# but older versions don't recognize some common documentation styles
my $min_pc = 0.18;
eval "use Pod::Coverage $min_pc";
plan skip_all => "Pod::Coverage $min_pc required for testing POD coverage"
if $@;
all_pod_coverage_ok();
#!perl -T
use v5.14;
use strict;
use warnings;
use Test::More;
unless ( $ENV{RELEASE_TESTING} ) {
plan( skip_all => "Author tests not required for installation" );
}
# Ensure a recent version of Test::Pod
my $min_tp = 1.22;
eval "use Test::Pod $min_tp";
plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;
all_pod_files_ok();
xt/boilerplate.t view on Meta::CPAN
#!perl -T
use v5.14;
use strict;
use warnings;
use Test::More;
plan tests => 3;
sub not_in_file_ok {
my ($filename, %regex) = @_;
open( my $fh, '<', $filename )
or die "couldn't open $filename for reading: $!";
my %violated;
while (my $line = <$fh>) {
while (my ($desc, $regex) = each %regex) {
( run in 1.104 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )