def test_annotate_any(self): x = MapAnnotation({'*': {'foo': 2}}) self.assertDictEqual(x.annotate_any(), {'foo': 2}) x = MapAnnotation() self.assertIsNone(x.annotate_any())
def test_annotate_any(self): x = MapAnnotation({'*': {'foo': 2}}) assert x.annotate_any() == {'foo': 2} x = MapAnnotation() assert x.annotate_any() is None
def test_annotate_any(self): x = MapAnnotation({'*': {"foo": 2}}) self.assertDictEqual(x.annotate_any(), {"foo": 2}) x = MapAnnotation() self.assertIsNone(x.annotate_any())