File: 00-load.t

package info (click to toggle)
libcatmandu-xls-perl 0.10-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 240 kB
  • sloc: perl: 369; makefile: 2; sh: 1
file content (20 lines) | stat: -rw-r--r-- 338 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use strict;
use warnings;
use Test::More;
use Test::Exception;

my $pkg;

BEGIN {
    $pkg = 'Catmandu::Exporter::XLS';
    use_ok $pkg;
    $pkg = 'Catmandu::Exporter::XLSX';
    use_ok $pkg;
    $pkg = 'Catmandu::Importer::XLS';
    use_ok $pkg;
    $pkg = 'Catmandu::Importer::XLSX';
    use_ok $pkg;
}
require_ok $pkg;

done_testing;