+ def test_getall_iter(self, props):
+ props.add('foo', 'a')
+ props.add('foobar', 'b')
+ for prop in props.getall('foo'):
+ assert isinstance(prop.value, str)
+
+ def test_getall_iter_list(self, props):
+ props.add('foo', 'a')
+ props.add('foobar', 'b')
+ res = list(props.getall('foo'))
+ assert len(res) == 2
+ for prop in res:
+ assert isinstance(prop.value, str)
+