#!/usr/bin/perl -w
use strict;
use File::Spec;
use Test::More;
use lib File::Spec->catdir( File::Spec->curdir, 't' );
BEGIN { require 'check_datetime_version.pl' }
plan tests => 12;
foreach ( qw( America/Chicago
UTC
US/Eastern
Europe/Paris
Etc/Zulu
Pacific/Midway
EST
) )
{
ok( DateTime::TimeZone->is_valid_name($_),
"$_ is a valid timezone name" );
}
foreach ( qw( America/Hell
Foo/Bar
FooBar
adhdsjghs;dgohas098huqjy4ily
1000:0001
) )
{
ok( ! DateTime::TimeZone->is_valid_name($_),
"$_ is not a valid timezone name" );
}
syntax highlighted by Code2HTML, v. 0.9.1