simulate the (fault) reply
(self, reply)
| 793 | return self.succeeded(binding, reply) |
| 794 | |
| 795 | def __fault(self, reply): |
| 796 | """ simulate the (fault) reply """ |
| 797 | binding = self.method.binding.output |
| 798 | if self.options.faults: |
| 799 | r, p = binding.get_fault(reply) |
| 800 | self.last_received(r) |
| 801 | return (500, p) |
| 802 | else: |
| 803 | return (500, None) |
no test coverage detected