File: no-tabs.t

package info (click to toggle)
libtest-synopsis-perl 0.11-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 304 kB
  • ctags: 23
  • sloc: perl: 207; makefile: 2
file content (39 lines) | stat: -rw-r--r-- 947 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
use strict;
use warnings;

# this test was generated with Dist::Zilla::Plugin::NoTabsTests 0.09

use Test::More 0.88;
use Test::NoTabs;

my @files = (
    'lib/Test/Synopsis.pm',
    't/00-compile.t',
    't/01-fail-if-SYNOPSIS-has-errors.t',
    't/02-END-token-errors.t',
    't/03-end-in-pod.t',
    't/04-HEREDOC.t',
    't/05-multi-files-clash.t',
    't/06-for.t',
    't/07-nopod.t',
    't/08-plain-text-in-pod.t',
    't/09-synopsis.t',
    't/10-in-pod-skip.t',
    't/11-DATA-in-pod.t',
    't/12-DATA-token-errors.t',
    't/lib/BrokenSYNOPSIS01.pm',
    't/lib/ENDInPod.pm',
    't/lib/ENDInPodWithError.pm',
    't/lib/NoPod.pm',
    't/lib/PlainTextInPod.pm',
    't/lib/Test03.pm',
    't/lib/Test03Other.pm',
    't/lib/Test04HEREDOC.pm',
    't/lib/Test10HEREDOC.pm',
    't/lib/Test10InPodSkipWithBegin.pm',
    't/lib/Test11DATAInPod.pm',
    't/lib/Test12DATAInPodWithError.pm'
);

notabs_ok($_) foreach @files;
done_testing;