()
| 526 | |
| 527 | |
| 528 | def test_adapter_url_parameter_sorting(): |
| 529 | map = r.Map( |
| 530 | [r.Rule("/", endpoint="index")], sort_parameters=True, sort_key=lambda x: x[1] |
| 531 | ) |
| 532 | adapter = map.bind("localhost", "/") |
| 533 | assert ( |
| 534 | adapter.build("index", {"x": 20, "y": 10, "z": 30}, force_external=True) |
| 535 | == "http://localhost/?y=10&x=20&z=30" |
| 536 | ) |
| 537 | |
| 538 | |
| 539 | def test_request_direct_charset_bug(): |