File: date.parse.misc.1.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 (89 lines) | stat: -rwxr-xr-x 2,011 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/usr/bin/perl

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

our $obj = new Date::Manip::Date;
$obj->config("forcedate","2000-01-21-12:00:00,America/New_York");
$obj->config("defaulttime","curr");

sub test {
   my(@test)=@_;
   if ($test[0] eq "config") {
      shift(@test);
      $obj->config(@test);
      return ();
   }

   my $err = $obj->parse(@test);
   if ($err) {
      return $obj->err();
   } else {
      my $d1 = $obj->value();
      my $d2 = $obj->value("gmt");
      return($d1,$d2);
   }
}

my $tests="

Friday => 2000012112:00:00 2000012117:00:00

'Friday at 13:00' => 2000012113:00:00 2000012118:00:00

Monday => 2000011712:00:00 2000011717:00:00

'Monday at 13:00' => 2000011713:00:00 2000011718:00:00

Saturday => 2000012212:00:00 2000012217:00:00

'Saturday at 13:00' => 2000012213:00:00 2000012218:00:00

'next year' => 2001012112:00:00 2001012117:00:00

'last year' => 1999012112:00:00 1999012117:00:00

'next month' => 2000022112:00:00 2000022117:00:00

'last month' => 1999122112:00:00 1999122117:00:00

'next week' => 2000012812:00:00 2000012817:00:00

'last week' => 2000011412:00:00 2000011417:00:00

'last week at 13:00' => 2000011413:00:00 2000011418:00:00

'next friday' => 2000012812:00:00 2000012817:00:00

'next sunday' => 2000012312:00:00 2000012317:00:00

'last friday' => 2000011412:00:00 2000011417:00:00

'last sunday' => 2000011612:00:00 2000011617:00:00

'last sunday at 13:00' => 2000011613:00:00 2000011618:00:00

'last tue in Jun 96' => 1996062512:00:00 1996062516:00:00

'last tueSday of Jan' => 2000012512:00:00 2000012517:00:00

'last day in October 1997' => 1997103112:00:00 1997103117:00:00
";

$::ti->tests(func  => \&test,
             tests => $tests);
$::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: