Net-DNS-SPF-Expander

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Path::Tiny" : "0",
            "Scalar::Util" : "0",
            "Types::Standard" : "0",
            "strict" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "requires" : {
            "IO::All" : "0",
            "Test::Differences" : "0",
            "Test::Exception" : "0",
            "Test::More" : "0",
            "lib" : "0"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "bugtracker" : {
         "web" : "https://github.com/amiri/Net-DNS-SPF-Expander/issues"

META.yml  view on Meta::CPAN

---
abstract: "Expands DNS SPF records, so you don't have to."
author:
  - 'Amiri Barksdale <amiri@campusexplorer.com>'
build_requires:
  IO::All: '0'
  Test::Differences: '0'
  Test::Exception: '0'
  Test::More: '0'
  lib: '0'
configure_requires:
  ExtUtils::MakeMaker: '0'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html

Makefile.PL  view on Meta::CPAN

    "Net::DNS::Resolver" => 0,
    "Net::DNS::ZoneFile" => 0,
    "Path::Tiny" => 0,
    "Scalar::Util" => 0,
    "Types::Standard" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "IO::All" => 0,
    "Test::Differences" => 0,
    "Test::Exception" => 0,
    "Test::More" => 0,
    "lib" => 0
  },
  "VERSION" => "0.021",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


my %FallbackPrereqs = (
  "IO::All" => 0,
  "List::AllUtils" => 0,
  "Moo" => 0,
  "MooX::Options" => 0,
  "Net::DNS::Resolver" => 0,
  "Net::DNS::ZoneFile" => 0,
  "Path::Tiny" => 0,
  "Scalar::Util" => 0,
  "Test::Differences" => 0,
  "Test::Exception" => 0,
  "Test::More" => 0,
  "Types::Standard" => 0,
  "lib" => 0,
  "strict" => 0,
  "warnings" => 0
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {

t/integration-idempotency.t  view on Meta::CPAN

use strict;
use warnings;
use lib 'lib';

use Net::DNS::SPF::Expander;
use IO::All -utf8;

use Test::More tests => 35;
use Test::Exception;
use Test::Differences;

my $backup_file  = 't/etc/test_zonefile_idem.bak';
my $new_file     = 't/etc/test_zonefile_idem.new';
my @output_files = ( $backup_file, $new_file );
for my $deletion (@output_files) {
    if ( -e $deletion ) {
        lives_ok { unlink $deletion } "I am deleting $deletion";
    } else {
        ok( 1 == 1, "$deletion was already deleted" );
    }

t/integration-multi-record.t  view on Meta::CPAN

use strict;
use warnings;
use lib 'lib';

use Net::DNS::SPF::Expander;
use IO::All -utf8;

use Test::More tests => 18;
use Test::Exception;
use Test::Differences;

my $backup_file  = 't/etc/test_zonefile.bak';
my $new_file     = 't/etc/test_zonefile.new';
my @output_files = ( $backup_file, $new_file );
for my $deletion (@output_files) {
    if ( -e $deletion ) {
        lives_ok { unlink $deletion } "I am deleting $deletion";
    } else {
        ok( 1 == 1, "$deletion was already deleted" );
    }

t/integration-single-record.t  view on Meta::CPAN

use strict;
use warnings;
use lib 'lib';

use Net::DNS::SPF::Expander;
use IO::All -utf8;

use Test::More tests => 18;
use Test::Exception;
use Test::Differences;

my $backup_file  = 't/etc/test_zonefile_single.bak';
my $new_file     = 't/etc/test_zonefile_single.new';
my @output_files = ( $backup_file, $new_file );
for my $deletion (@output_files) {
    if ( -e $deletion ) {
        lives_ok { unlink $deletion } "I am deleting $deletion";
    } else {
        ok( 1 == 1, "$deletion was already deleted" );
    }



( run in 0.639 second using v1.01-cache-2.11-cpan-131fc08a04b )