File: 00-load.t

package info (click to toggle)
libcatmandu-plos-perl 0.01-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 108 kB
  • sloc: perl: 99; makefile: 2
file content (15 lines) | stat: -rwxr-xr-x 164 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!perl -T

use strict;
use warnings;
use Test::More;

my $pkg;
BEGIN {
    $pkg = 'Catmandu::Importer::PLoS';
    use_ok $pkg;
}

require_ok $pkg;

done_testing 2;