zeroclickinfo-goodies/t/IDN.t

22 lines
350 B
Perl
Raw Normal View History

2013-02-08 09:14:09 -08:00
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use DDG::Test::Goodie;
use utf8;
zci answer_type => 'idn';
zci is_cached => 1;
ddg_goodie_test(
[qw(
DDG::Goodie::IDN
)],
'idn exämple.com' => test_zci('Encoded IDN: xn--exmple-cua.com'),
'idn xn--exmple-cua.com' => test_zci('Decoded IDN: exämple.com'),
);
done_testing;