File: 00-load.t

package info (click to toggle)
libcatmandu-cmd-repl-perl 0.01-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 100 kB
  • sloc: perl: 32; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 159 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::Cmd::repl';
    use_ok $pkg;
}

require_ok $pkg;

done_testing 2;