1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/crypto/rand/rand_test.v

14 lines
286 B
V
Raw Normal View History

2019-07-31 04:24:12 +03:00
// Copyright (c) 2019 Alexander Medvednikov. All rights reserved.
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
import crypto.rand
fn test_crypto_rand() {
r := rand.read(100) or {
assert false
return
}
assert r.len == 100
}