(self, attribute)
| 830 | return None |
| 831 | |
| 832 | def _get_mapping(self, attribute): |
| 833 | if attribute: |
| 834 | mapping = self._mapping.get(attribute) |
| 835 | if mapping: |
| 836 | attribute = '/'.join( |
| 837 | [self.protocol.convert_case(step) for step in |
| 838 | mapping.split('/')]) |
| 839 | else: |
| 840 | attribute = self.protocol.convert_case(attribute) |
| 841 | return attribute |
| 842 | return None |
| 843 | |
| 844 | @fluent |
| 845 | def new(self, attribute, operation=ChainOperator.AND): |
no test coverage detected