mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-15 17:35:45 +00:00
10 lines
221 B
Nim
10 lines
221 B
Nim
import nimcrypto/utils
|
|
import unittest
|
|
|
|
when defined(nimHasUsed): {.used.}
|
|
|
|
suite "Utilities test":
|
|
test "Can parse hex string with prefix":
|
|
let a = "0x1234"
|
|
let b = fromHex(a)
|
|
check: b == @[byte 0x12, 0x34] |