07script.t   [plain text]


#!/usr/bin/perl -w

use strict;
use Test::More;

BEGIN
{
    if ( $] <= 5.008 )
    {
        plan skip_all => 'These tests require Perl 5.8.0+';
    }
    else
    {
        plan tests => 4;
    }
}

use DateTime::Locale;

my $loc = DateTime::Locale->load('zh_Hans_SG');

is( $loc->script, 'Simplified Han', 'check script' );
is( $loc->native_script, "\x{7C21}\x{9AD4}\x{6F22}\x{8A9E}", 'check native_script' );
is( $loc->script_id, 'Hans', 'check script_id' );

is( $loc->territory_id, 'SG', 'check territory_id' );