File: base.calc_date_date.t

package info (click to toggle)
libdate-manip-perl 6.98-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 14,928 kB
  • sloc: perl: 222,846; sh: 54; ansic: 26; makefile: 8
file content (66 lines) | stat: -rwxr-xr-x 1,535 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/perl

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

our $dmt = new Date::Manip::TZ;
our $obj = $dmt->base();
$dmt->config("forcedate","now,America/New_York");

sub test {
   my(@test)=@_;
   my @ret = $obj->calc_date_date(@test);
   return @ret;
}

my $tests="

[ 2007 01 15 10 00 00 ] [ 2007 01 15 12 00 00 ] => [ 2 0 0 ]

[ 2007 01 15 12 00 00 ] [ 2007 01 15 10 00 00 ] => [ -2 0 0 ]

[ 2007 01 15 10 30 00 ] [ 2007 01 15 12 15 00 ] => [ 1 45 0 ]

[ 2007 01 15 12 15 00 ] [ 2007 01 15 10 30 00 ] => [ -1 -45 0 ]

[ 2007 01 31 10 00 00 ] [ 2007 02 01 12 00 00 ] => [ 26 0 0 ]

[ 2007 02 01 12 00 00 ] [ 2007 01 31 10 00 00 ] => [ -26 0 0 ]

[ 2007 12 31 10 00 00 ] [ 2008 01 01 12 00 00 ] => [ 26 0 0 ]

[ 2008 01 01 12 00 00 ] [ 2007 12 31 10 00 00 ] => [ -26 0 0 ]

[ 2007 01 15 10 00 00 ] [ 2007 01 17 12 00 00 ] => [ 50 0 0 ]

[ 2007 01 17 12 00 00 ] [ 2007 01 15 10 00 00 ] => [ -50 0 0 ]

[ 2007 01 15 10 30 00 ] [ 2007 01 17 12 15 00 ] => [ 49 45 0 ]

[ 2007 01 17 12 15 00 ] [ 2007 01 15 10 30 00 ] => [ -49 -45 0 ]

[ 2007 01 30 10 00 00 ] [ 2007 02 02 12 00 00 ] => [ 74 0 0 ]

[ 2007 02 02 12 00 00 ] [ 2007 01 30 10 00 00 ] => [ -74 0 0 ]

";

$::ti->tests(func  => \&test,
             tests => $tests);
$::ti->done_testing();

1;

#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: