Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/aio-libs/aiohttp
/ test_ctor_charset
Function
test_ctor_charset
tests/test_web_response.py:731–735 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
729
730
731
def
test_ctor_charset():
732
resp = Response(text=
'текст'
, charset=
'koi8-r'
)
733
734
assert
'текст'
.encode(
'koi8-r'
) == resp.body
735
assert
'koi8-r'
== resp.charset
736
737
738
def
test_ctor_charset_default_utf8():
Callers
nothing calls this directly
Calls
2
Response
Class · 0.90
encode
Method · 0.80
Tested by
no test coverage detected