swarmsim/tests/lib/ttables.nim
2023-09-01 19:35:31 -03:00

15 lines
279 B
Nim

import unittest
import swarmsim/lib/tables
suite "tables":
test "should create a default value and allow modification":
var table: Table[string, int]
table.getDefault("hello", c): c[] += 1
table.getDefault("hello", c): c[] += 1
check(table["hello"] == 2)