Parse-Flash-Cookie

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

distribution_type:  module
configure_requires:
    ExtUtils::MakeMaker:  0
build_requires:
    ExtUtils::MakeMaker:  0
requires:
    Config:               0
    DateTime:             0
    File::Spec::Functions:  0
    Log::Log4perl:        0
    Test::Differences:    0
    Test::Exception:      0
    Test::More:           0
    Test::Strict:         0
    URI::Escape:          0
    XML::Writer:          0
no_index:
    directory:
        - t
        - inc
generated_by:       ExtUtils::MakeMaker version 6.55_02

Makefile.PL  view on Meta::CPAN

  LICENSE       => 'perl',
  AUTHOR        => 'Andreas Faafeng <aff@cpan.org>',
  VERSION_FROM  => 'lib/Parse/Flash/Cookie.pm',
  ABSTRACT_FROM => 'lib/Parse/Flash/Cookie.pm',
  PL_FILES      => {},
  PREREQ_PM     => {
    'Config'                => 0,
    'DateTime'              => 0,
    'File::Spec::Functions' => 0,
    'Log::Log4perl'         => 0,
    'Test::Differences'     => 0,
    'Test::Exception'       => 0,
    'Test::More'            => 0,
    'Test::Strict'          => 0,
    'URI::Escape'           => 0,
    'XML::Writer'           => 0,
  },
  dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
  clean => { FILES    => 'Parse-Flash-Cookie-*' },
);

t/02-to_text.t  view on Meta::CPAN

#!perl -T

use warnings;
use strict;

use File::Spec::Functions;
use Test::More tests => 47;
use Test::Differences;
use lib qw( lib );

my $datadir      = q{data};  # test files
my %file2content = ();

BEGIN { use_ok('Parse::Flash::Cookie') }
use Parse::Flash::Cookie;
ok(1);

# create separate block to disable warning since we use commas within qw()



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