(changes)
| 884 | ], |
| 885 | ) |
| 886 | def test_url_constraints_hash_inequal(changes): |
| 887 | options = { |
| 888 | 'max_length': 1, |
| 889 | 'allowed_schemes': ['scheme'], |
| 890 | 'host_required': False, |
| 891 | 'default_host': 'host', |
| 892 | 'default_port': 0, |
| 893 | 'default_path': 'path', |
| 894 | } |
| 895 | assert hash(UrlConstraints(**options)) != hash(UrlConstraints(**{**options, **changes})) |
| 896 | |
| 897 | |
| 898 | def test_json(): |
nothing calls this directly
no test coverage detected