42 lines
1011 B
Nim
42 lines
1011 B
Nim
{.used.}
|
|
|
|
# Nim-Libp2p
|
|
# Copyright (c) 2023 Status Research & Development GmbH
|
|
# Licensed under either of
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE))
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT))
|
|
# at your option.
|
|
# This file may not be copied, modified, or distributed except according to
|
|
# those terms.
|
|
|
|
import ./helpers
|
|
|
|
suite "Helpers":
|
|
asyncTest "checkUntilTimeout should pass if the condition is true":
|
|
let a = 2
|
|
let b = 2
|
|
checkUntilTimeout:
|
|
a == b
|
|
|
|
asyncTest "checkUntilTimeout should pass if the conditions are true":
|
|
let a = 2
|
|
let b = 2
|
|
checkUntilTimeout:
|
|
a == b
|
|
a == 2
|
|
b == 2
|
|
|
|
asyncTest "checkUntilCustomTimeout should pass when the condition is true":
|
|
let a = 2
|
|
let b = 2
|
|
checkUntilCustomTimeout(2.seconds):
|
|
a == b
|
|
|
|
asyncTest "checkUntilCustomTimeout should pass when the conditions are true":
|
|
let a = 2
|
|
let b = 2
|
|
checkUntilCustomTimeout(5.seconds):
|
|
a == b
|
|
a == 2
|
|
b == 2
|