import { sleep } from "$sb/lib/async.ts"; import { assertEquals } from "../test_deps.ts"; import { LimitedMap } from "./limited_map.ts"; Deno.test("limited map", async () => { const mp = new LimitedMap(3); mp.set("a", "a"); mp.set("b", "b"); mp.set("c", "c"); await sleep(2); assertEquals(mp.get("a"), "a"); await sleep(2); assertEquals(mp.get("b"), "b"); await sleep(2); assertEquals(mp.get("c"), "c"); // Drops the first key mp.set("d", "d"); await sleep(2); assertEquals(mp.get("a"), undefined); });