Net-BigIP

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

         }
      },
      "runtime" : {
         "requires" : {
            "JSON" : "0",
            "LWP::UserAgent" : "0"
         }
      },
      "test" : {
         "requires" : {
            "IO::Socket::SSL" : "0",
            "Test::Exception" : "0",
            "Test::More" : "0"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "repository" : {
         "type" : "git",
         "url" : "git://github.com/Renater/BigIP-REST.git",

META.yml  view on Meta::CPAN

---
abstract: 'REST interface for BigIP'
author:
  - unknown
build_requires:
  ExtUtils::MakeMaker: '0'
  IO::Socket::SSL: '0'
  Test::Exception: '0'
  Test::More: '0'
configure_requires:
  version: '0'
dynamic_config: 1
generated_by: 'ExtUtils::MakeMaker version 7.44, CPAN::Meta::Converter version 2.150010'
license: artistic_2
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'

Makefile.PL  view on Meta::CPAN

    ABSTRACT_FROM  => 'lib/Net/BigIP.pm',
    LICENSE        => 'artistic_2',
    PREREQ_PM => {
        'JSON'           => 0,
        'LWP::UserAgent' => 0,
    },
    CONFIGURE_REQUIRES => {
        'version' => 0,
    },
    TEST_REQUIRES  => {
        'IO::Socket::SSL' => 0,
        'Test::Exception' => 0,
        'Test::More'      => 0,
    },
    META_MERGE => {
        'meta-spec' => { version => 2 },
        'resources' => {
            repository => {
                type => 'git',
                url  => 'git://github.com/Renater/BigIP-REST.git',
                web  => 'https://github.com/Renater/BigIP-REST'

t/test.t  view on Meta::CPAN

#!/usr/bin/perl

use strict;
use warnings;

use English qw(-no_match_vars);
use Net::BigIP;
use IO::Socket::SSL;

use Test::More;
use Test::Exception;

plan(skip_all => 'live test, set $ENV{BIGIP_TEST_URL} to a true value to run')
    if !$ENV{BIGIP_TEST_URL};
plan(skip_all => 'live test, set $ENV{BIGIP_TEST_USERNAME} to a true value to run')
    if !$ENV{BIGIP_TEST_USERNAME};
plan(skip_all => 'live test, set $ENV{BIGIP_TEST_PASSWORD} to a true value to run')
    if !$ENV{BIGIP_TEST_PASSWORD};



( run in 0.494 second using v1.01-cache-2.11-cpan-4d50c553e7e )