CBOR-Free

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "parent" : "0",
            "perl" : "5.010"
         }
      },
      "test" : {
         "requires" : {
            "Data::Dumper" : "0",
            "FindBin" : "0",
            "Test::Class::Tiny" : "0.02",
            "Test::Deep" : "0",
            "Test::Differences" : "0",
            "Test::Exception" : "0",
            "Test::FailWarnings" : "0",
            "Test::More" : "1.302133",
            "Test::Pod" : "1",
            "autodie" : "0"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {

META.yml  view on Meta::CPAN

---
abstract: 'Fast CBOR for everyone'
author:
  - 'Felipe Gasper (FELIPE)'
build_requires:
  Data::Dumper: '0'
  ExtUtils::MakeMaker: '0'
  FindBin: '0'
  Test::Class::Tiny: '0.02'
  Test::Deep: '0'
  Test::Differences: '0'
  Test::Exception: '0'
  Test::FailWarnings: '0'
  Test::More: '1.302133'
  Test::Pod: '1'
  autodie: '0'
configure_requires:
  Devel::PPPort: '0'
  ExtUtils::MakeMaker: '6.84'
dynamic_config: 1
generated_by: 'ExtUtils::MakeMaker version 7.62, CPAN::Meta::Converter version 2.150010'

Makefile.PL  view on Meta::CPAN

    },

    TEST_REQUIRES => {
        'autodie'         => 0,
        'FindBin' => 0,
        'Data::Dumper'    => 0,
        'Test::Exception' => 0,
        'Test::More'      => 1.302133,
        'Test::FailWarnings' => 0,
        'Test::Deep'      => 0,
        'Test::Differences' => 0,
        'Test::Class::Tiny' => 0.02,
        'Test::Pod' => 1,
    },

    # SIGN => 1,
);

sub WriteMakefile1 {  #Compatibility code for old versions of EU::MM. Written by Alexandr Ciornii, version 2. Added by eumm-upgrade.
    my %params=@_;
    my $eumm_version=$ExtUtils::MakeMaker::VERSION;

t/cbor_numbers_sort_lex.t  view on Meta::CPAN

#!/usr/bin/env perl

# NB: This isn’t a test of CBOR::Free so much as validation of the assumption
# that underlies CBOR::Free’s implementation of canonical order.

use Test::More;
use Test::FailWarnings;
use Test::Differences;

use List::Util;

use CBOR::Free;

my @smallers = ( 0 .. 0x2000 );

my @largers = map { int rand 0xffffffff } ( 1 .. 100 );

my @numbers = List::Util::shuffle( @smallers, @largers );



( run in 1.137 second using v1.01-cache-2.11-cpan-39bf76dae61 )