()
| 470 | |
| 471 | @pytest.mark.integration |
| 472 | def test_xopen_remote(): |
| 473 | with xopen(TEST_URL, "r", encoding="utf-8") as f: |
| 474 | assert list(f) == TEST_URL_CONTENT.splitlines(keepends=True) |
| 475 | with xPath(TEST_URL).open("r", encoding="utf-8") as f: |
| 476 | assert list(f) == TEST_URL_CONTENT.splitlines(keepends=True) |
| 477 | |
| 478 | |
| 479 | @pytest.mark.parametrize( |