The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
123456789101112 #!/usr/bin/perluse strict;use warnings;use Test::More tests => 1;eval <<'EVAL';use Proc::Daemon;EVALcmp_ok( $@, 'eq', '', 'loading Proc::Daemon' );
#!/usr/bin/perl
use
strict;
warnings;
Test::More
tests
=> 1;
eval
<<'EVAL';
use Proc::Daemon;
EVAL
cmp_ok( $@,
'eq'
,
''
'loading Proc::Daemon'
);