File: dm5.convtz.t

package info (click to toggle)
libdate-manip-perl 6.83-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 16,264 kB
  • sloc: perl: 245,655; sh: 54; makefile: 11
file content (50 lines) | stat: -rwxr-xr-x 1,197 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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/perl

use warnings;
use strict;
use Test::Inter;
$::ti = new Test::Inter $0;
require "tests-dm5.pl";

Date_Init("TZ=EST");

my $tests ="

today +0000 +0100 2 => ''

2001082812:05:00   +0000 BST           => 2001082813:05:00

2001012812:05:00   GMT   +0000         => 2001012812:05:00

2001082812:05:00   GMT   +0000         => 2001082812:05:00

2001082812:05:00   GMT   BST           => 2001082813:05:00

2001012812:05:00   GMT   Europe/London => 2001012812:05:00

2007030113:34:34   +0000 +0100         => 2007030114:34:34

2007030113:34:34   +0000 -0100         => 2007030112:34:34

";

$::ti->tests(func  => \&Date_ConvTZ,
             tests => $tests);
$::ti->tests(func  => \&Date_ConvTZ,
             tests => [ [ '2007030113:34:34', 'EST', 'GMT' ],
                        [ '2007030113:34:34', '',    'GMT' ],
                        [ '2007030113:34:34', undef, 'GMT' ] ],
             expected => "2007030118:34:34" );
$::ti->done_testing();


#Local Variables:
#mode: cperl
#indent-tabs-mode: nil
#cperl-indent-level: 3
#cperl-continued-statement-offset: 2
#cperl-continued-brace-offset: 0
#cperl-brace-offset: 0
#cperl-brace-imaginary-offset: 0
#cperl-label-offset: 0
#End: