File: test_exceptions.py

package info (click to toggle)
python-httpx-sse 0.4.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 188 kB
  • sloc: python: 715; makefile: 31; sh: 17
file content (7 lines) | stat: -rw-r--r-- 131 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
import httpx

from httpx_sse import SSEError


def test_sse_error() -> None:
    assert issubclass(SSEError, httpx.TransportError)