-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path97_time.pl
42 lines (27 loc) · 1.02 KB
/
97_time.pl
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
#!/usr/bin/perl
use Test::More tests => 9;
use strict;
use warnings;
BEGIN { use_ok( "EPrints" ); }
BEGIN { use_ok( "EPrints::Test" ); }
my $repoid = EPrints::Test::get_test_id();
my $ep = EPrints->new();
isa_ok( $ep, "EPrints", "EPrints->new()" );
if( !defined $ep ) { BAIL_OUT( "Could not obtain the EPrints System object" ); }
my $repo = $ep->repository( $repoid );
isa_ok( $repo, "EPrints::Repository", "Get a repository object ($repoid)" );
if( !defined $repo ) { BAIL_OUT( "Could not obtain the Repository object" ); }
# render tests
my $xhtml;
$xhtml = EPrints::Time::render_date( $repo, '2010' );
is($xhtml->toString, '2010', 'render_date(YYYY)');
$xhtml = EPrints::Time::render_date( $repo, '2010-06-02' );
is($xhtml->toString, '2 June 2010', 'render_date(YYYY-MM-DD)');
$xhtml = EPrints::Time::render_short_date( $repo, '2010-06-02' );
is($xhtml->toString, '02 Jun 2010', 'render_date(YYYY-MM-DD)');
# misc
my $dt;
my @t;
@t = EPrints::Time::utc_datetime();
is($t[0], (gmtime())[5]+1900, 'utc_datetime() year');
ok(1);