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