mirror of https://github.com/status-im/nim-eth.git
26 lines
559 B
Nim
26 lines
559 B
Nim
#
|
|
# Ethereum KeyFile
|
|
# (c) Copyright 2018
|
|
# Status Research & Development GmbH
|
|
#
|
|
# Licensed under either of
|
|
# Apache License, version 2.0, (LICENSE-APACHEv2)
|
|
# MIT license (LICENSE-MIT)
|
|
|
|
{.used.}
|
|
|
|
import
|
|
unittest,
|
|
../../eth/keyfile/uuid
|
|
|
|
suite "Cross-platform UUID test suite":
|
|
test "Platform UUID check":
|
|
check uuidGenerate().isOk
|
|
|
|
test "Conversion test":
|
|
let u = uuidGenerate()[]
|
|
check:
|
|
len($u) == 36
|
|
$uuidFromString($u)[] == $u
|
|
uuidToString(u) == $u
|