File: 01.basic.t

package info (click to toggle)
libcgi-application-plugin-ajaxupload-perl 0.0.3-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 264 kB
  • sloc: perl: 1,284; makefile: 4
file content (16 lines) | stat: -rw-r--r-- 265 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use strict;
use warnings;
use Carp;
use Test::More tests => 2;
use Test::NoWarnings;
use lib qw(t/lib);
use CGI;
use TestWebApp;

subtest 'create a webapp object' => sub{
    plan tests => 1;
    my $app = TestWebApp->new;
    isa_ok($app, 'CGI::Application');
}