1use strict;
2use Test;
3
4BEGIN { plan tests => 2 }
5
6use DateTime;
7use DateTime::Functions;
8
9ok(DateTime->now, now());
10ok(DateTime->today, today());
11
121;
13