blob: 8ac876daf3a31e30e318a799485ef4fdf91256b7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
use strict;
use Test::More tests => 2;
BEGIN { require_ok "Time::HiRes"; }
my $f = Time::HiRes::tv_interval [5, 100_000], [10, 500_000];
ok abs($f - 5.4) < 0.001 or print("# $f\n");
1;
|