2019-07-28 17:20:24 +02:00
|
|
|
import os
|
|
|
|
import time as t
|
|
|
|
import crypto.sha256 as s2
|
|
|
|
|
|
|
|
import (
|
|
|
|
math
|
|
|
|
log as l
|
|
|
|
crypto.sha512 as s5
|
|
|
|
)
|
|
|
|
|
2019-09-22 08:48:15 +02:00
|
|
|
fn test_import() {
|
2019-07-28 17:20:24 +02:00
|
|
|
assert os.SUCCESS == os.SUCCESS &&
|
|
|
|
t.MonthDays[0] == t.MonthDays[0] &&
|
|
|
|
s2.Size == s2.Size &&
|
|
|
|
math.Pi == math.Pi &&
|
|
|
|
l.INFO == l.INFO &&
|
|
|
|
s5.Size == s5.Size
|
|
|
|
}
|