Files
Scrapling/tests/fetchers/async/test_requests_session.py
T
2025-12-30 22:06:37 +02:00

16 lines
398 B
Python

from scrapling.engines.static import AsyncFetcherClient
class TestFetcherSession:
"""Test FetcherSession functionality"""
def test_async_fetcher_client_creation(self):
"""Test AsyncFetcherClient creation"""
client = AsyncFetcherClient()
# Should not have context manager methods
assert client.__aenter__ is None
assert client.__aexit__ is None