File: style-notabs.t

package info (click to toggle)
libdbix-class-inflatecolumn-ip-perl 0.02003-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 196 kB
  • sloc: perl: 1,612; sql: 8; makefile: 6
file content (20 lines) | stat: -rw-r--r-- 337 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!perl -T
use strict;
use warnings;

use Test::More;

if (not $ENV{TEST_AUTHOR}) {
    plan skip_all => 'set TEST_AUTHOR to enable this test';
}
else {
    eval 'use Test::NoTabs 0.03';
    if ($@) {
        plan skip_all => 'Test::NoTabs 0.03 not installed';
    }
    else {
        plan tests => 1;
    }
}

all_perl_files_ok('lib');