Group
Extension

Matches 2

Test-JSON-More ( B/BA/BAYASHI/Test-JSON-More-0.02.tar.gz, BAYASHI, 2016; MetaCPAN )
Test-JSON-More/lib/Test/JSON/More.pm ( view source; MetaCPAN )
 Test::JSON::More;
use strict;
use warnings;
use Test::Differences;
use parent 'Test::Builder::Module';

our $VERSION = '0.02';

my $JSON;

sub import {
    my $class       = shift;
    my $json_modul
e = shift || 'JSON';

    my $caller = caller;

    for my $func (qw/ ok_json cmp_json parsed_json ok_json_schema /) {
        no strict 'refs'; ## no critic
        *{"${caller}::$func"} = \&{"${clas
s}::$func"};
    }

    $JSON = _load_module($json_module)->new;
}

sub _load_module {
    my $module = shift;

    my $lib = $module;
    $lib =~ s!::!/!g;
    require "$lib.pm"; ## no critic
    $li
Test-JSON-More ( B/BA/BAYASHI/Test-JSON-More-0.02.tar.gz, BAYASHI, 2016; MetaCPAN )
Test-JSON-More/README.pod ( view source; MetaCPAN )
8


This is Perl module B<Test::JSON::More>.

=begin html

<a href="http://travis-ci.org/bayashi/Test-JSON-More"><img src="https://secure.travis-ci.org/bayashi/Test-JSON-More.png?_t=1461806674"/></a> 
s.io/r/bayashi/Test-JSON-More"><img src="https://coveralls.io/repos/bayashi/Test-JSON-More/badge.png?_t=1461806674&branch=master"/></a>

=end html


=head1 INSTALLATION

Test::JSON::More installation 
Test::JSON::More

Download it, unpack it, then build it as per the usual:

    % perl Makefile.PL
    % make && make test

Then install it:

    % make install


=head1 DOCUMENTATION

Test::JSON::More

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.