ASP4x-Linker

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

--- #YAML:1.0
name:               ASP4x-Linker
version:            1.003
abstract:           In-page persistence of widget-specific variables.
author:
    - John Drago <jdrago_999@yahoo.com>
license:            perl
distribution_type:  module
test_requires:
    Test::More:       0
requires:
    Carp:             0
    ASP4:             1.044
    Router::Generic:  0.016
recommends:
    Apache2::RequestRec: 0
no_index:
    directory:
        - t
        - inc

Makefile.PL  view on Meta::CPAN

use strict;
use warnings;
use inc::Module::Install;
use 5.008005;

name 'ASP4x-Linker';
perl_version '5.008001';
license 'perl';
all_from 'lib/ASP4x/Linker.pm';

test_requires 'Test::More'  => '0';
test_requires 'Router::Generic' => '0.016';

requires 'ASP4'             => '1.044';

tests_recursive();
WriteAll();

t/010-basic/010-load.t  view on Meta::CPAN

#!/usr/bin/perl -w

use strict;
use warnings 'all';
use Test::More 'no_plan';

use_ok('ASP4x::Linker');
use_ok('ASP4x::Linker::Widget');

t/010-basic/020-basic.t  view on Meta::CPAN

#!/usr/bin/perl -w

use strict;
use warnings 'all';
use Test::More 'no_plan';
use ASP4::API;
use JSON::XS;

my $api; BEGIN { $api = ASP4::API->new }

use_ok('ASP4x::Linker');

BLANK: {
  ok( my $res = $api->ua->get('/'), "GET /" );
  ok( my $info = decode_json($res->content), "JSON is good" );

t/010-basic/030-vars.t  view on Meta::CPAN

#!/usr/bin/perl -w

use strict;
use warnings 'all';
use Test::More 'no_plan';
use ASP4::API;

my $api; BEGIN { $api = ASP4::API->new }

use_ok('ASP4x::Linker');
use_ok('Router::Generic');



NO_VARS: {

t/010-basic/040-links.t  view on Meta::CPAN

#!/usr/bin/perl -w

use strict;
use warnings 'all';
use Test::More 'no_plan';
use ASP4::API;

my $api; BEGIN { $api = ASP4::API->new }

use_ok('ASP4x::Linker');
use_ok('Router::Generic');

NO_VARS: {
  $api->ua->get('/');

t/010-basic/050-hidden-fields.t  view on Meta::CPAN

#!/usr/bin/perl -w

use strict;
use warnings 'all';
use Test::More 'no_plan';
use ASP4::API;
use ASP4x::Linker;

my $api; BEGIN { $api = ASP4::API->new }

$api->ua->get('/');

ok( my $linker = ASP4x::Linker->new );

$linker->add_widget(

t/010-basic/060-widget-triggers.t  view on Meta::CPAN

#!/usr/bin/perl -w

use strict;
use warnings 'all';
use Test::More 'no_plan';
use ASP4::API;

my $api; BEGIN { $api = ASP4::API->new }

use ASP4x::Linker;

$api->ua->get('/?artists.page_size=10&artists.page_number=4');

my $linker = ASP4x::Linker->new();

t/010-basic/070-chaining.t  view on Meta::CPAN

#!/usr/bin/perl -w

use strict;
use warnings 'all';
use Test::More 'no_plan';
use ASP4::API;
use ASP4x::Linker;

my $api = ASP4::API->new();

$api->ua->get('/?artists.page_size=10&artists.page_number=4');

my $linker = ASP4x::Linker->new();

my $widget = $linker->add_widget(

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.212 second using v1.00-cache-2.02-grep-82fe00e-cpan-585fae043c8 )