(self, obj=None)
| 882 | return res |
| 883 | |
| 884 | def var_to_string(self, obj=None): |
| 885 | new_string = None |
| 886 | if obj is None: |
| 887 | new_string = 'undefined' |
| 888 | elif is_null_value(obj): |
| 889 | new_string = 'null' |
| 890 | else: |
| 891 | new_string = json_stringify(obj) |
| 892 | return new_string |
| 893 | |
| 894 | def assert_static_request_output(self, exchange, type, skip_keys, stored_url, request_url, stored_output, new_output): |
| 895 | if stored_url != request_url: |
no test coverage detected