mirror of
https://github.com/httpie/cli.git
synced 2025-03-13 14:28:50 +01:00
12 lines
228 B
Python
12 lines
228 B
Python
from .utils import http
|
|
|
|
|
|
def test_early_response_show(remote_httpbin_secure):
|
|
r = http(
|
|
"--verify=no",
|
|
'https://early-hints.fastlylabs.com/'
|
|
)
|
|
|
|
assert "103 Early Hints" in r
|
|
assert "200 OK" in r
|