File: 01_loadmodule.t

package info (click to toggle)
libproc-daemon-perl 0.23-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 176 kB
  • sloc: perl: 376; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 159 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl

use strict;
use warnings;

use Test::More tests => 1;

eval <<'EVAL';
use Proc::Daemon;
EVAL

cmp_ok( $@, 'eq', '', 'loading Proc::Daemon' );