summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/cpan/Encode/t/isa.t
blob: 84703a57eda97f9e38da780b087d19a780d876bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#
# $Id: isa.t,v 1.1 2015/04/02 12:08:24 dankogai Exp $
#
use strict;
use Encode qw/find_encoding/;
use Test::More;
my @enc = Encode->encodings(":all");
plan tests => 0+@enc;
isa_ok find_encoding($_), "Encode::Encoding" for @enc;