File: PVTests.pm

package info (click to toggle)
libparams-validate-perl 0.91-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 524 kB
  • ctags: 729
  • sloc: perl: 2,596; makefile: 52
file content (16 lines) | stat: -rw-r--r-- 213 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package PVTests;

use strict;
use warnings;

use Test::More;

# 5.6.0 core dumps all over during the tests
if ( $] == 5.006 )
{
    plan skip_all => '5.6.0 core dumps all over during the tests.';
    exit;
}


1;