mirror of
https://github.com/logos-storage/swarmsim.git
synced 2026-01-02 13:53:07 +00:00
15 lines
279 B
Nim
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)
|
|
|