示例#1
0
 def test_key_does_not_exist(self):
     trie = Trie()
     assert not trie.has('foo')
示例#2
0
 def test_key_exists(self):
     trie = Trie()
     trie.add('foo', 1)
     assert trie.has('foo')