File: self-tidyall.t

package info (click to toggle)
libcode-tidyall-perl 0.83~ds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,036 kB
  • sloc: perl: 5,240; lisp: 47; makefile: 2; sh: 1
file content (14 lines) | stat: -rw-r--r-- 411 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use strict;
use warnings;

use Test::Code::TidyAll;
use Test::More;

plan skip_all => q{This is broken because of tidyall's broken UTF-8 handling. This is because we now have a contributor in Git with a UTF-8 character in their name, and this gets mangled during tidying. Oh, the irony.};

plan skip_all => 'This plugin requires Perl 5.10+'
    unless $] >= 5.010;

tidyall_ok( verbose => 1 );

done_testing();