Groonga-API
view release on metacpan or search on metacpan
"configure" : {
"requires" : {
"ExtUtils::MakeMaker" : "0"
}
},
"runtime" : {
"requires" : {
"Exporter" : "0",
"JSON::XS" : "0",
"Path::Extended" : "0",
"Test::Differences" : "0",
"Test::More" : "0.88",
"Test::UseAllModules" : "0.10",
"version" : "0.77"
}
}
},
"release_status" : "stable",
"resources" : {
"repository" : {
"url" : "https://github.com/charsbar/groonga-api"
version: 1.4
name: Groonga-API
no_index:
directory:
- t
- inc
requires:
Exporter: 0
JSON::XS: 0
Path::Extended: 0
Test::Differences: 0
Test::More: 0.88
Test::UseAllModules: 0.10
version: 0.77
resources:
repository: https://github.com/charsbar/groonga-api
version: 0.03
Makefile.PL view on Meta::CPAN
NAME => 'Groonga::API',
AUTHOR => 'Kenichi Ishigaki <ishigaki@cpan.org>',
VERSION_FROM => 'lib/Groonga/API.pm',
ABSTRACT_FROM => 'lib/Groonga/API.pm',
LICENSE => 'perl',
OBJECT => '$(O_FILES)',
PREREQ_PM => {
'Exporter' => 0,
'JSON::XS' => 0,
'Path::Extended' => 0,
'Test::Differences' => 0,
'Test::More' => '0.88',
'Test::UseAllModules' => '0.10',
'version' => '0.77',
},
META_MERGE => {
resources => {
repository => 'https://github.com/charsbar/groonga-api',
},
},
test => {TESTS => 't/*.t t/*/*.t'},
t/10_basic.t view on Meta::CPAN
use strict;
use warnings;
use FindBin;
use File::Path;
use Test::More;
use Test::Differences;
use Ploonga;
my $tmpdir = "$FindBin::Bin/../tmp";
rmtree $tmpdir if -d $tmpdir;
mkpath $tmpdir;
my $ploonga = Ploonga->new(
dbfile => "$tmpdir/test.db",
);
t/api/45_table_sort.t view on Meta::CPAN
use strict;
use warnings;
use Groonga::API::Test;
use Test::Differences;
table_column_test(sub {
my ($ctx, $db, $table, $column) = @_;
my $rc = load_into_table($ctx, [
{_key => 'key1', text => 'text1'},
{_key => 'key2', text => 'text2'},
{_key => 'key3', text => 'text3'},
]);
is $rc => GRN_SUCCESS, "loaded";
( run in 0.584 second using v1.01-cache-2.11-cpan-131fc08a04b )