File: release-no-tabs.t

package info (click to toggle)
libtext-vcard-perl 3.09-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 356 kB
  • sloc: perl: 1,537; makefile: 2
file content (59 lines) | stat: -rw-r--r-- 1,267 bytes parent folder | download | duplicates (3)
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

BEGIN {
  unless ($ENV{RELEASE_TESTING}) {
    require Test::More;
    Test::More::plan(skip_all => 'these tests are for release candidate testing');
  }
}

use strict;
use warnings;

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

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

my @files = (
    'lib/Text/vCard.pm',
    'lib/Text/vCard/Addressbook.pm',
    'lib/Text/vCard/Node.pm',
    'lib/vCard.pm',
    'lib/vCard/AddressBook.pm',
    'lib/vCard/Role/FileIO.pm',
    't/01-node.t',
    't/02-vcard.t',
    't/03-addressbook.t',
    't/04-formats.t',
    't/05-export.t',
    't/06-encoding.t',
    't/06a-encoding2.t',
    't/07-quoted.t',
    't/08-base64.t',
    't/apple_2.1_unicode.vcf',
    't/apple_version3.vcf',
    't/author-pod-syntax.t',
    't/base64.vcf',
    't/complete.vcf',
    't/encoding.vcf',
    't/encoding2.vcf',
    't/escape.t',
    't/evolution.vcf',
    't/import-export.t',
    't/latin1.vcf',
    't/mix_type.vcf',
    't/notes.vcf',
    't/quoted.vcf',
    't/quotedprintable.vcf',
    't/release-no-tabs.t',
    't/simple.vcf',
    't/text/vcard/node/add_types.t',
    't/types.t',
    't/unwrap.t',
    't/unwrap.vcf',
    't/vcard.t',
    't/vcard/address_book.t'
);

notabs_ok($_) foreach @files;
done_testing;