mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-03 00:34:47 -04:00
Add a test for TreeCache.__contains__
This commit is contained in:
parent
5c79ef9396
commit
7641a90c34
2 changed files with 9 additions and 0 deletions
|
@ -77,3 +77,9 @@ class TreeCacheTestCase(unittest.TestCase):
|
|||
cache[("b",)] = "B"
|
||||
cache.clear()
|
||||
self.assertEquals(len(cache), 0)
|
||||
|
||||
def test_contains(self):
|
||||
cache = TreeCache()
|
||||
cache[("a",)] = "A"
|
||||
self.assertTrue(("a",) in cache)
|
||||
self.assertFalse(("b",) in cache)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue