File: 01-load.t

package info (click to toggle)
libmodule-starter-plugin-cgiapp-perl 0.44-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 520 kB
  • sloc: perl: 1,119; makefile: 6
file content (14 lines) | stat: -rw-r--r-- 285 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl

# Test to see if the module loads correctly.
use warnings;
use strict;
use Test::More tests => 1;

BEGIN {
    use_ok('Module::Starter::Plugin::CGIApp');
}

diag(
    "Testing Module::Starter::Plugin::CGIApp $Module::Starter::Plugin::CGIApp::VERSION, Perl $], $^X"
);