File: warn_once.t

package info (click to toggle)
libencode-locale-perl 1.05-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 104 kB
  • sloc: perl: 241; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 279 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
#!perl -w

use strict;
use warnings;

use Test::More tests => 2;
my @warns;
BEGIN {
    $SIG{__WARN__} = sub { push @warns, @_ };
}

use Encode::Locale;

BEGIN {
    use Encode;
    my $a = encode("UTF-8", "foo\xFF");
    ok $a, "foo\xC3\xBF";
}

is "@warns", "", 'no warnings';