mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
10 lines
228 B
Python
10 lines
228 B
Python
|
import pytest
|
||
|
import pytest_socket
|
||
|
import requests
|
||
|
|
||
|
|
||
|
def test_socket_disabled() -> None:
|
||
|
"""This test should fail."""
|
||
|
with pytest.raises(pytest_socket.SocketBlockedError):
|
||
|
requests.get("https://www.example.com")
|