コード例 #1
0
ファイル: test_trie.py プロジェクト: alexmic/geotrie-python
 def test_key_does_not_exist(self):
     trie = Trie()
     assert not trie.has('foo')
コード例 #2
0
ファイル: test_trie.py プロジェクト: alexmic/geotrie-python
 def test_key_exists(self):
     trie = Trie()
     trie.add('foo', 1)
     assert trie.has('foo')