()
| 653 | |
| 654 | |
| 655 | def test_iri_support(): |
| 656 | b = EnvironBuilder("/föö-bar", base_url="http://☃.net/") |
| 657 | assert b.path == "/f%C3%B6%C3%B6-bar" |
| 658 | assert b.base_url == "http://xn--n3h.net/" |
| 659 | |
| 660 | |
| 661 | @pytest.mark.parametrize("buffered", (True, False)) |
nothing calls this directly
no test coverage detected