0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-16 01:28:32 +02:00

Add a test for TreeCache.__contains__

This commit is contained in:
Mark Haines 2016-02-22 15:22:38 +00:00
parent 5c79ef9396
commit 7641a90c34
2 changed files with 9 additions and 0 deletions

View file

@ -61,6 +61,9 @@ class CounterMetricTestCase(unittest.TestCase):
'vector{method="PUT"} 1',
])
# Check that passing too few values errors
self.assertRaises(ValueError, counter.inc)
class CallbackMetricTestCase(unittest.TestCase):

View file

@ -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)