{.used.} import std/[unittest, options], ../../eth/p2p/discoveryv5/lru suite "LRUCache": const capacity = 10 target = 4 test "LRU value gets removed": var lru = LRUCache[int, int].init(capacity = capacity) # Fully fill the LRU for i in 0..