ArangoDB
view release on metacpan or search on metacpan
$class->new(
name => 'ArangoDB',
module_name => 'ArangoDB',
dist_author => 'Hideaki Ohno<hide.o.j55@gmail.com>',
license => 'perl',
recursive_test_files => 1,
dynamic_config => 0,
build_requires => {
'Test::More' => '0.98',
'App::Prove' => 0,
'Test::Fatal' => 0,
'Test::Deep' => 0,
'Test::TCP' => 0,
'Test::Mock::Guard' => 0,
'File::Temp' => 0,
},
configure_requires => { 'Module::Build' => '0.38' },
requires => {
'perl' => '5.008001',
'parent' => 0,
'Scalar::Util' => '1.19',
"inc",
"eg"
]
},
"prereqs" : {
"build" : {
"requires" : {
"App::Prove" : 0,
"File::Temp" : 0,
"Test::Deep" : 0,
"Test::Fatal" : 0,
"Test::Mock::Guard" : 0,
"Test::More" : "0.98",
"Test::TCP" : 0
}
},
"configure" : {
"requires" : {
"Module::Build" : "0.38"
}
},
---
abstract: 'ArangoDB client for Perl'
author:
- 'Hideaki Ohno<hide.o.j55@gmail.com>'
build_requires:
App::Prove: 0
File::Temp: 0
Test::Deep: 0
Test::Fatal: 0
Test::Mock::Guard: 0
Test::More: 0.98
Test::TCP: 0
configure_requires:
Module::Build: 0.38
dynamic_config: 0
generated_by: 'Module::Build version 0.38, CPAN::Meta::Converter version 2.112150'
keywords:
- arngodb
- database
use strict;
use Test::More;
use Test::Fatal qw(exception lives_ok);
use ArangoDB;
my $db = ArangoDB->new(
{ host => 'localhost',
port => 0,
timeout => 10,
keep_alive => 1,
use_proxy => 1,
auth_type => 'Basic',
auth_user => 'tesuser',
t/02_collection.t view on Meta::CPAN
use strict;
use Test::More;
use Test::Fatal qw(lives_ok dies_ok exception);
use Test::Mock::Guard;
use ArangoDB;
use JSON;
if ( !$ENV{TEST_ARANGODB_PORT} ) {
plan skip_all => 'Can"t find port of arangod';
}
my $port = $ENV{TEST_ARANGODB_PORT};
my $config = {
t/03_document.t view on Meta::CPAN
use strict;
use Test::More;
use Test::Fatal qw(lives_ok dies_ok exception);
use Test::Mock::Guard;
use Test::Deep;
use ArangoDB;
use JSON;
if ( !$ENV{TEST_ARANGODB_PORT} ) {
plan skip_all => 'Can"t find port of arangod';
}
my $port = $ENV{TEST_ARANGODB_PORT};
t/04_edge.t view on Meta::CPAN
use strict;
use Test::More;
use strict;
use warnings;
use Test::More;
use Test::Fatal qw(lives_ok exception);
use Test::Mock::Guard;
use ArangoDB;
use JSON;
if ( !$ENV{TEST_ARANGODB_PORT} ) {
plan skip_all => 'Can"t find port of arangod';
}
my $port = $ENV{TEST_ARANGODB_PORT};
my $config = {
t/05_query.t view on Meta::CPAN
use strict;
use Test::More;
use Test::Fatal qw(lives_ok dies_ok exception);
use Test::Mock::Guard;
use ArangoDB;
use JSON;
if ( !$ENV{TEST_ARANGODB_PORT} ) {
plan skip_all => 'Can"t find port of arangod';
}
my $port = $ENV{TEST_ARANGODB_PORT};
my $config = {
t/06_simple_query.t view on Meta::CPAN
use strict;
use Test::More;
use Test::Fatal qw(lives_ok dies_ok exception);
use Test::Mock::Guard;
use ArangoDB;
use JSON;
if ( !$ENV{TEST_ARANGODB_PORT} ) {
plan skip_all => 'Can"t find port of arangod';
}
my $port = $ENV{TEST_ARANGODB_PORT};
my $config = {
t/07_index.t view on Meta::CPAN
use strict;
use Test::More;
use Test::Fatal qw(lives_ok dies_ok exception);
use Test::Mock::Guard;
use ArangoDB;
if ( !$ENV{TEST_ARANGODB_PORT} ) {
plan skip_all => 'Can"t find port of arangod';
}
my $port = $ENV{TEST_ARANGODB_PORT};
my $config = {
host => 'localhost',
( run in 1.894 second using v1.01-cache-2.11-cpan-54e63673c56 )