(self)
| 328 | class test_AttributeDict: |
| 329 | |
| 330 | def test_getattr__setattr(self): |
| 331 | x = AttributeDict({'foo': 'bar'}) |
| 332 | assert x['foo'] == 'bar' |
| 333 | with pytest.raises(AttributeError): |
| 334 | x.bar |
| 335 | x.bar = 'foo' |
| 336 | assert x['bar'] == 'foo' |
| 337 | |
| 338 | |
| 339 | class test_Messagebuffer: |
nothing calls this directly
no test coverage detected