(self, data)
| 132 | |
| 133 | class TestBSON(unittest.TestCase): |
| 134 | def assertInvalid(self, data): |
| 135 | self.assertRaises(InvalidBSON, decode, data) |
| 136 | |
| 137 | def check_encode_then_decode(self, doc_class=dict, decoder=decode, encoder=encode): |
| 138 | def helper(doc): |
no outgoing calls
no test coverage detected