#[ allow( unused_imports ) ]
use super::*;
tests_impls!
{
#[ cfg( any( feature = "chrono", feature = "time_chrono" ) ) ]
#[ test ]
fn basic()
{
use TheModule::*;
let got = time::now();
assert!( got > 0 );
let got1 = time::now();
let got2 = time::ms::now();
a_id!( got1, got2 );
let got1 = time::now();
let got2 = time::s::now();
a_id!( got1 / 1000, got2 );
}
}
tests_index!
{
basic,
}