Files
babi/tests/fdict_test.py
2020-03-13 21:07:58 -07:00

8 lines
213 B
Python

from babi.fdict import FDict
def test_fdict_repr():
# mostly because this shouldn't get hit elsewhere but is uesful for
# debugging purposes
assert repr(FDict({1: 2, 3: 4})) == 'FDict({1: 2, 3: 4})'