mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
14 lines
316 B
Perl
14 lines
316 B
Perl
#!/usr/bin/perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
if ( $ENV{FCS_TEST_SKIP_PERLTIDY} )
|
|
{
|
|
require Test::More;
|
|
Test::More::plan( 'skip_all' =>
|
|
"Skipping perltidy test because FCS_TEST_SKIP_PERLTIDY was set" );
|
|
}
|
|
require Test::Code::TidyAll;
|
|
|
|
Test::Code::TidyAll::tidyall_ok( conf_file => ".tidyallrc", );
|