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