CGI-Application-Plugin-PageLookup

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

        'CGI::Application::Plugin::Forward' => 0,
        'CGI::Application::Plugin::DBH' => 0,
        'DBI' => 0,
        'HTML::Template'=>0,
        'HTML::Template::Pluggable'=>0,
        'UNIVERSAL::require'=>0,
    },
    recommends => {
    },
    build_requires => {
        'Test::Differences' => 0,
        'Test::More' => 0,
        'Test::Database' => '1.07',
        'XML::LibXML'=>0
    },
    meta_merge => {
        resources=> {
            repository => 'http://github.com/periapt/cgi-application-plugin-pagelookup/tree',
        },
        keywords => ['cgiapp','Titanium','framework','sitemap'],
    },

META.yml  view on Meta::CPAN

version: 1.8
author:
  - 'Nicholas Bamber <nicholas@periapt.co.uk>'
abstract: Database driven model framework for CGI::Application
license: perl
resources:
  license: http://dev.perl.org/licenses/
  repository: http://github.com/periapt/cgi-application-plugin-pagelookup/tree
build_requires:
  Test::Database: 1.07
  Test::Differences: 0
  Test::More: 0
  XML::LibXML: 0
requires:
  CGI: 0
  CGI::Application: 4.31
  CGI::Application::Plugin::DBH: 0
  CGI::Application::Plugin::Forward: 0
  Carp: 0
  DBI: 0
  HTML::Template: 0

Makefile.PL  view on Meta::CPAN

          'PREREQ_PM' => {
                           'CGI' => 0,
                           'CGI::Application' => '4.31',
                           'CGI::Application::Plugin::DBH' => 0,
                           'CGI::Application::Plugin::Forward' => 0,
                           'Carp' => 0,
                           'DBI' => 0,
                           'HTML::Template' => 0,
                           'HTML::Template::Pluggable' => 0,
                           'Test::Database' => '1.07',
                           'Test::Differences' => 0,
                           'Test::More' => 0,
                           'UNIVERSAL::require' => 0,
                           'XML::LibXML' => 0
                         },
          'INSTALLDIRS' => 'site',
          'EXE_FILES' => [],
          'PL_FILES' => {}
        )
;

t/basic.t  view on Meta::CPAN

#!perl  

use strict;
use warnings;
use Test::More;
use Test::Database;
use Test::Differences;
use lib qw(t/lib);

# get all available handles
my @handles;

BEGIN {
	@handles  = Test::Database->handles({dbd=>'SQLite'},{dbd=>'mysql'});

	# plan the tests
	plan tests => 2 + 9 * @handles;

t/expires.t  view on Meta::CPAN

#!perl  

use strict;
use warnings;
use Test::More;
use Test::Database;
use Test::Differences;
use lib qw(t/lib);

# get all available handles
my @handles;

BEGIN {
        @handles  = Test::Database->handles({dbd=>'SQLite'},{dbd=>'mysql'});

        # plan the tests
        plan tests => 2 + 33 * @handles;

t/href.t  view on Meta::CPAN

#!perl  

use strict;
use warnings;
use Test::More;
use Test::Database;
use Test::Differences;
use lib qw(t/lib);

# get all available handles
my @handles;

BEGIN {
        @handles  = Test::Database->handles({dbd=>'SQLite'},{dbd=>'mysql'});

        # plan the tests
        plan tests => 2 + 9 * @handles;

t/lang.t  view on Meta::CPAN

#!perl  -T

use strict;
use warnings;
use Test::More;
use Test::Database;
use Test::Differences;
use lib qw(t/lib);

# get all available handles
my @handles;

BEGIN {
        @handles  = Test::Database->handles({dbd=>'SQLite'},{dbd=>'mysql'});

        # plan the tests
        plan tests => 2 + 15 * @handles;

t/loops.t  view on Meta::CPAN

#!perl  

use strict;
use warnings;
use Test::More;
use Test::Database;
use Test::Differences;
use lib qw(t/lib);

# get all available handles
my @handles;

BEGIN {
        @handles  = Test::Database->handles({dbd=>'SQLite'},{dbd=>'mysql'});

        # plan the tests
        plan tests => 2 + 11 * @handles;

t/menu.t  view on Meta::CPAN

#!perl  

use strict;
use warnings;
use Test::More;
use Test::Database;
use Test::Differences;
use lib qw(t/lib);

# get all available handles
my @handles;

BEGIN {
        @handles  = Test::Database->handles({dbd=>'SQLite'},{dbd=>'mysql'});

        # plan the tests
        plan tests => 1 + 7 * @handles;

t/menu2.t  view on Meta::CPAN

#!perl  

use strict;
use warnings;
use Test::More;
use Test::Database;
use Test::Differences;
use lib qw(t/lib);

# get all available handles
my @handles;

BEGIN {
        @handles  = Test::Database->handles({dbd=>'SQLite'},{dbd=>'mysql'});

        # plan the tests
        plan tests => 1 + 7 * @handles;

t/menu2a.t  view on Meta::CPAN

#!perl  

use strict;
use warnings;
use Test::More;
use Test::Database;
use Test::Differences;
use lib qw(t/lib);

# get all available handles
my @handles;

BEGIN {
        @handles  = Test::Database->handles({dbd=>'SQLite'},{dbd=>'mysql'});

        # plan the tests
        plan tests => 1 + 7 * @handles;

t/mixnmatch.t  view on Meta::CPAN

#!perl  

use strict;
use warnings;
use Test::More;
use Test::Database;
use Test::Differences;
use lib qw(t/lib);

# get all available handles
my @handles;

BEGIN {
        @handles  = Test::Database->handles({dbd=>'SQLite'},{dbd=>'mysql'});

        # plan the tests
        plan tests => 1 + 11 * @handles;

t/notfound.t  view on Meta::CPAN

#!perl  

use strict;
use warnings;
use Test::More;
use Test::Database;
use Test::Differences;
use lib qw(t/lib);

# get all available handles
my @handles;
ok(1); # just keep the test suite happy if Test::Database does nothing

BEGIN {

	@handles = Test::Database->handles({dbd=>'SQLite'},{dbd=>'mysql'});

t/objects.t  view on Meta::CPAN

#!perl  

use strict;
use warnings;
use Test::More;
use Test::Database;
use Test::Differences;
use lib qw(t/lib);

# get all available handles
my @handles;
ok(1); # just keep the test suite happy if Test::Database does nothing


BEGIN {
	@handles = Test::Database->handles({dbd=>'SQLite'},{dbd=>'mysql'});

t/parsimony.t  view on Meta::CPAN

#!perl  

use strict;
use warnings;
use Test::More;
use Test::Database;
use Test::Differences;
use lib qw(t/lib);

# get all available handles
my @handles;
ok(1); # just keep the test suite happy if Test::Database does nothing


BEGIN {
	@handles = Test::Database->handles({dbd=>'SQLite'},{dbd=>'mysql'});

t/prefix.t  view on Meta::CPAN

#!perl 

use strict;
use warnings;
use Test::More;
use Test::Database;
use Test::Differences;
use lib qw(t/lib);

# get all available handles
my @handles;
ok(1); # just keep the test suite happy if Test::Database does nothing


BEGIN {
	@handles = Test::Database->handles({dbd=>'SQLite'},{dbd=>'mysql'});

t/prereq.t  view on Meta::CPAN

    plan( skip_all => $msg );
}

eval { require Test::Prereq::Build; };

if ( $@) {
   my $msg = 'Test::Prereq::Build required to criticise code';
   plan( skip_all => $msg );
}

Test::Prereq::prereq_ok(undef, 'prereq', ['Test::CheckChanges', 'Test::CheckManifest', 'Test::Differences', 'Test::Perl::Critic', 'Test::Spelling', 'Test::Prereq::Build', 'TestApp', 'SmartObjectTest']);


t/submenu.t  view on Meta::CPAN

#!perl  

use strict;
use warnings;
use Test::More;
use Test::Database;
use Test::Differences;
use lib qw(t/lib);

# get all available handles
my @handles;

BEGIN {
        @handles  = Test::Database->handles({dbd=>'SQLite'},{dbd=>'mysql'});

        # plan the tests
        plan tests => 1 + 11 * @handles;

t/values.t  view on Meta::CPAN

#!perl  

use strict;
use warnings;
use Test::More;
use Test::Database;
use Test::Differences;
use lib qw(t/lib);

# get all available handles
my @handles;
ok(1); # just keep the test suite happy if Test::Database does nothing


BEGIN {
	@handles = Test::Database->handles({dbd=>'SQLite'},{dbd=>'mysql'});



( run in 0.853 second using v1.01-cache-2.11-cpan-600a1bdf6e4 )