File: no_hdr.t

package info (click to toggle)
libdevel-callparser-perl 0.002-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 296 kB
  • ctags: 9
  • sloc: perl: 73; makefile: 8; sh: 4
file content (14 lines) | stat: -rw-r--r-- 275 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use warnings;
use strict;

use Test::More tests => 2;

require_ok "Devel::CallParser";

SKIP: {
	skip "callparser1.h available", 1 if "$]" >= 5.013008;
	eval { &Devel::CallParser::callparser1_h() };
	like $@, qr/\Acallparser1\.h not available on this version of Perl/;
}

1;