File: StrictWarnings.run

package info (click to toggle)
libperl-critic-freenode-perl 0.028-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 416 kB
  • sloc: perl: 986; makefile: 2
file content (79 lines) | stat: -rw-r--r-- 789 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
## name HasStrictWarnings
## failures 0
## cut

use strict;
use warnings;

## name NoStrict
## failures 1
## cut

use warnings;

## name NoWarnings
## failures 1
## cut

use strict;

## name NoStrictWarnings
## failures 1
## cut

1;

## name Importer
## failures 0
## cut

use Moose;

## name IncompleteImporter
## failures 1
## cut

use common::sense;

## name VersionStrict1
## failures 0
## cut

use 5.012;
use warnings;

## name VersionStrict2
## failures 0
## cut

use v5.12.0;
use warnings;

## name VersionStrict3
## failures 0
## cut

use 5.12.0;
use warnings;

## name VersionStrict4
## failures 1
## cut

use 5.010001;
use warnings;

## name VersionStrict5
## failures 1
## cut

use v5.10.1;
use warnings;

## name VersionStrict6
## failures 1
## cut

use 5.10.1;
use warnings;