File: no_hdr.t

package info (click to toggle)
libdevel-callparser-perl 0.002-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 292 kB
  • sloc: perl: 73; sh: 4; makefile: 3
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;