List-DoubleLinked

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Scalar::Util" : "0",
            "namespace::clean" : "0.20",
            "overload" : "0",
            "perl" : "5.008",
            "strict" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "requires" : {
            "Test::Differences" : "0",
            "Test::More" : "0",
            "perl" : "5.008"
         }
      }
   },
   "provides" : {
      "List::DoubleLinked" : {
         "file" : "lib/List/DoubleLinked.pm",
         "version" : "0.005"
      },

META.yml  view on Meta::CPAN

---
abstract: 'Double Linked Lists for Perl'
author:
  - 'Leon Timmermans <fawaka@gmail.com>'
build_requires:
  Test::Differences: '0'
  Test::More: '0'
  perl: '5.008'
configure_requires:
  Module::Build::Tiny: '0.034'
  perl: '5.008'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.005, CPAN::Meta::Converter version 2.150005'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html

t/10-basics.t  view on Meta::CPAN

#! perl

use strict;
use warnings FATAL => 'all';

use Test::More tests => 21;
use Test::Differences;
use Scalar::Util qw/weaken/;

use List::DoubleLinked;

my $list = List::DoubleLinked->new;

ok $list->empty, 'List is empty';

eq_or_diff([$list->flatten], [], 'Flattens to empty array');



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